Home
last modified time | relevance | path

Searched full:3600 (Results 1 – 25 of 324) sorted by relevance

12345678910>>...13

/freebsd/crypto/krb5/src/tests/
H A Dt_renew.py56 test('simple', '1h', '2h', 3600, 7200)
69 test('non-renewable', '1h', None, 3600, None)
76 test('disallowed client', '1h', '2h', 3600, None)
82 test('disallowed server', '1h', '2h', 3600, None)
97 test('long', '15h', None, 10 * 3600, 15 * 3600)
98 test('long noopts', '15h', None, 10 * 3600, None, env=no_opts)
104 test('maxrenewlife client 1', '4h', '5h', 4 * 3600, 5 * 3600)
105 test('maxrenewlife client 2', '6h', '10h', 6 * 3600, 5 * 3600)
111 test('maxrenewlife server 1', '2h', '3h', 2 * 3600, 3 * 3600)
112 test('maxrenewlife server 2', '4h', '8h', 4 * 3600, 3 * 3600)
[all …]
H A Dt_skew.py5 realm.start_kdc(['-T', '-3600'])
30 realm.start_kdc(['-T', '-3600'])
37 flags=['-s', '-3600s', '-c', fast_cache])
/freebsd/tests/sys/cddl/zfs/tests/hotspare/
H A Dhotspare_test.sh31 atf_set "timeout" 3600
57 atf_set "timeout" 3600
83 atf_set "timeout" 3600
136 atf_set "timeout" 3600
162 atf_set "timeout" 3600
188 atf_set "timeout" 3600
215 atf_set "timeout" 3600
241 atf_set "timeout" 3600
267 atf_set "timeout" 3600
293 atf_set "timeout" 3600
[all …]
/freebsd/crypto/openssl/demos/certs/
H A Dmkcerts.sh14 $OPENSSL x509 -req -in intreq.pem -CA root.pem -days 3600 \
21 $OPENSSL x509 -req -in req.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
28 $OPENSSL x509 -req -in creq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
35 $OPENSSL x509 -req -in rreq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
42 $OPENSSL x509 -req -in respreq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
60 $OPENSSL x509 -req -in dhsreq.pem -CA root.pem -days 3600 \
70 $OPENSSL x509 -req -in dhcreq.pem -CA root.pem -days 3600 \
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_destroy/
H A Dzfs_destroy_test.sh32 atf_set "timeout" 3600
59 atf_set "timeout" 3600
86 atf_set "timeout" 3600
113 atf_set "timeout" 3600
140 atf_set "timeout" 3600
167 atf_set "timeout" 3600
194 atf_set "timeout" 3600
/freebsd/tests/sys/cddl/zfs/tests/zones/
H A Dzones_test.sh32 atf_set "timeout" 3600
58 atf_set "timeout" 3600
84 atf_set "timeout" 3600
110 atf_set "timeout" 3600
136 atf_set "timeout" 3600
/freebsd/tests/sys/cddl/zfs/tests/zfsd/
H A Dzfsd_test.sh155 atf_set "timeout" 3600
185 atf_set "timeout" 3600
216 atf_set "timeout" 3600
247 atf_set "timeout" 3600
278 atf_set "timeout" 3600
308 atf_set "timeout" 3600
338 atf_set "timeout" 3600
369 atf_set "timeout" 3600
399 atf_set "timeout" 3600
429 atf_set "timeout" 3600
[all …]
/freebsd/contrib/wpa/wpa_supplicant/examples/
H A Dudhcpd-p2p.conf39 #decline_time 3600 #default: 3600 (1 hour)
45 #conflict_time 3600 #default: 3600 (1 hour)
/freebsd/share/doc/papers/jail/
H A Djail01.fig47 4 0 0 100 0 14 12 0.0000 4 150 105 1950 3600 /\001
55 4 0 0 100 0 14 12 0.0000 4 165 525 2550 3600 home/\001
77 4 0 0 100 0 14 12 0.0000 4 150 420 5400 3600 etc/\001
85 4 2 0 100 0 15 12 0.0000 4 135 840 7725 3600 10.0.0.2\001
/freebsd/crypto/openssl/demos/certs/apps/
H A Dmkacerts.sh20 $OPENSSL x509 -req -in creq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
27 $OPENSSL x509 -req -in sreq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
34 $OPENSSL x509 -req -in sreq2.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
/freebsd/usr.bin/w/
H A Dpr_time.c104 if (idle >= 36 * 3600) { in pr_idle()
114 else if (idle >= 3600) in pr_idle()
116 (int)(idle / 3600), (int)((idle % 3600) / 60)); in pr_idle()
/freebsd/crypto/heimdal/lib/asn1/
H A Dtimegm.c98 time_t secday = t % (3600 * 24); in _der_gmtime()
99 time_t days = t / (3600 * 24); in _der_gmtime()
104 tm->tm_min = (secday % 3600) / 60; in _der_gmtime()
105 tm->tm_hour = secday / 3600; in _der_gmtime()
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dconvert_to_tm.h92 __sec %= 24 * 3600; in __convert_to_tm()
93 __result.tm_hour = __sec / 3600; in __convert_to_tm()
94 __sec %= 3600; in __convert_to_tm()
135 __sec %= 24 * 3600; in __convert_to_tm()
136 __result.tm_hour = __sec / 3600; in __convert_to_tm()
137 __sec %= 3600; in __convert_to_tm()
/freebsd/tests/sys/cddl/zfs/tests/replacement/
H A Dreplacement_test.sh32 atf_set "timeout" 3600
54 atf_set "timeout" 3600
76 atf_set "timeout" 3600
/freebsd/tests/sys/cddl/zfs/tests/online_offline/
H A Donline_offline_test.sh32 atf_set "timeout" 3600
56 atf_set "timeout" 3600
/freebsd/tests/sys/cddl/zfs/tests/truncate/
H A Dtruncate_test.sh32 atf_set "timeout" 3600
56 atf_set "timeout" 3600
/freebsd/contrib/sendmail/libmilter/docs/
H A Dfigure2.fig34 4200 1200 3600 1200
47 4200 2400 3600 2400
/freebsd/sbin/bsdlabel/
H A Ddisktab139 :ty=winchester:dt=ESDI:se#512:nt#15:ns#35:nc#1223:rm#3600:sf: \
147 :ty=winchester:dt=IDA:se#512:nt#16:ns#63:nc#1644:rm#3600:\
157 :ty=winchester:dt=ESDI:se#512:nt#16:ns#63:nc#954:rm#3600:\
169 :ty=removeable:dt=SCSI:rm#3600:\
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dstr_conv.c264 days = (int) (deltat / (24*3600L)); in krb5_deltat_to_string()
265 dt = deltat % (24*3600L); in krb5_deltat_to_string()
266 hours = (int) (dt / 3600); in krb5_deltat_to_string()
267 dt %= 3600; in krb5_deltat_to_string()
H A Dx-deltat.y60 #define DAY (24 * 3600)
61 #define HOUR 3600
163 DO_SUM($$, $1 * 3600, $3); };
/freebsd/bin/pwait/
H A Dpwait.196 $ sleep 30 & sleep 3600 &
109 $ sleep 30 & sleep 3600 &
/freebsd/stand/i386/libi386/
H A Dtime.c54 return (hr * 3600 + minute * 60 + sec); in bios_seconds()
84 now += 24 * 3600; in time()
/freebsd/crypto/krb5/src/plugins/kdcpolicy/test/
H A Dmain.c49 *lifetime_out = 3600 / divisor; in output_from_indicator()
53 *lifetime_out = 7 * 3600 / divisor; in output_from_indicator()
/freebsd/usr.sbin/mfiutil/
H A Dmfi_bbu.c48 d = period / (24 * 3600); in mfi_autolearn_period()
49 h = (period % (24 * 3600)) / 3600; in mfi_autolearn_period()
/freebsd/usr.sbin/nscd/
H A Dconfig.h44 #define DEFAULT_POSITIVE_LIFETIME (3600)
53 #define DEFAULT_MULITPART_LIFETIME (3600)

12345678910>>...13