/freebsd/crypto/krb5/src/tests/ |
H A D | t_renew.py | 56 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 D | t_skew.py | 5 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 D | hotspare_test.sh | 31 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 D | mkcerts.sh | 14 $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 D | zfs_destroy_test.sh | 32 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 D | zones_test.sh | 32 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 D | zfsd_test.sh | 155 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 D | udhcpd-p2p.conf | 39 #decline_time 3600 #default: 3600 (1 hour) 45 #conflict_time 3600 #default: 3600 (1 hour)
|
/freebsd/share/doc/papers/jail/ |
H A D | jail01.fig | 47 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 D | mkacerts.sh | 20 $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 D | pr_time.c | 104 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 D | timegm.c | 98 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 D | convert_to_tm.h | 92 __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 D | replacement_test.sh | 32 atf_set "timeout" 3600 54 atf_set "timeout" 3600 76 atf_set "timeout" 3600
|
/freebsd/tests/sys/cddl/zfs/tests/online_offline/ |
H A D | online_offline_test.sh | 32 atf_set "timeout" 3600 56 atf_set "timeout" 3600
|
/freebsd/tests/sys/cddl/zfs/tests/truncate/ |
H A D | truncate_test.sh | 32 atf_set "timeout" 3600 56 atf_set "timeout" 3600
|
/freebsd/contrib/sendmail/libmilter/docs/ |
H A D | figure2.fig | 34 4200 1200 3600 1200 47 4200 2400 3600 2400
|
/freebsd/sbin/bsdlabel/ |
H A D | disktab | 139 :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 D | str_conv.c | 264 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 D | x-deltat.y | 60 #define DAY (24 * 3600) 61 #define HOUR 3600 163 DO_SUM($$, $1 * 3600, $3); };
|
/freebsd/bin/pwait/ |
H A D | pwait.1 | 96 $ sleep 30 & sleep 3600 & 109 $ sleep 30 & sleep 3600 &
|
/freebsd/stand/i386/libi386/ |
H A D | time.c | 54 return (hr * 3600 + minute * 60 + sec); in bios_seconds() 84 now += 24 * 3600; in time()
|
/freebsd/crypto/krb5/src/plugins/kdcpolicy/test/ |
H A D | main.c | 49 *lifetime_out = 3600 / divisor; in output_from_indicator() 53 *lifetime_out = 7 * 3600 / divisor; in output_from_indicator()
|
/freebsd/usr.sbin/mfiutil/ |
H A D | mfi_bbu.c | 48 d = period / (24 * 3600); in mfi_autolearn_period() 49 h = (period % (24 * 3600)) / 3600; in mfi_autolearn_period()
|
/freebsd/usr.sbin/nscd/ |
H A D | config.h | 44 #define DEFAULT_POSITIVE_LIFETIME (3600) 53 #define DEFAULT_MULITPART_LIFETIME (3600)
|