Home
last modified time | relevance | path

Searched refs:seconds (Results 26 – 50 of 84) sorted by relevance

1234

/PHP-8.3/ext/date/tests/
H A Dbug81097.phpt2 Bug #81097 (DateTimeZone silently falls back to UTC when providing an offset with seconds)
H A Dbug81565.phpt2 Bug #81565 (date parsing fails when provided with timezones including seconds)
H A Dgh11281.phpt2 GH-11281 (DateTimeZone::getName() does not include seconds in offset)
H A Ddate_modify_basic1.phpt16 date_modify($datetime, "+1 week 2 days 4 hours 2 seconds");
H A DDateTime_modify_basic1.phpt16 $datetime->modify("+1 week 2 days 4 hours 2 seconds");
/PHP-8.3/sapi/fpm/tests/
H A Dbug77023-pm-dynamic-blocking-sigquit.phpt47 $tester->expectLogWarning('child \\d+ exited on signal 9 \\(SIGKILL\\) after \\d+.\\d+ seconds from…
49 $tester->expectLogWarning('child \\d+ exited on signal 9 \\(SIGKILL\\) after \\d+.\\d+ seconds from…
H A Dlogreader.inc84 * @param int $timeoutSeconds Read timeout in seconds
161 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
228 * @param int $timeoutSeconds Read timeout in seconds
269 * @param int $timeoutSeconds Read timeout in seconds
338 * @param int $timeoutSeconds Read timeout in seconds
H A Dreload-uses-sigkill-as-last-measure.phpt45 // so we have to wait at least two seconds.
/PHP-8.3/ext/standard/tests/general_functions/
H A Dsleep_error.phpt10 Fatal error: Uncaught ValueError: sleep(): Argument #1 ($seconds) must be greater than or equal to …
/PHP-8.3/ext/date/lib/
H A Dparse_posix.c165 int seconds = 0; in read_offset() local
187 seconds = read_number(ptr); in read_offset()
188 if (seconds == TIMELIB_UNSET) { in read_offset()
189 return seconds; in read_offset()
199 return -1 * bias * (hours * 3600 + minutes * 60 + seconds); in read_offset()
H A Dtimelib.c191 int seconds; in timelib_decimal_hour_to_hms() local
199 seconds = floor((h - *hour) * 3600); in timelib_decimal_hour_to_hms()
201 *min = seconds / 60; in timelib_decimal_hour_to_hms()
202 *sec = seconds % 60; in timelib_decimal_hour_to_hms()
/PHP-8.3/ext/standard/tests/time/
H A Dbug60222.phpt18 time_nanosleep(): Argument #1 ($seconds) must be greater than or equal to 0
/PHP-8.3/ext/mysqli/tests/
H A Dbug76386.phpt2 Prepared Statement formatter truncates fractional seconds from date/time column (bug #76386)
13 /* Fractional seconds are supported with servers >= 5.6.4. */
15 …die(sprintf("skip Server doesn't support fractional seconds in timestamp (%s)", mysqli_get_server_…
/PHP-8.3/ext/standard/tests/file/windows_mb_path/
H A Dbug74923.phpt15 dozens of seconds to complete. */
/PHP-8.3/ext/standard/tests/misc/
H A Dtime_nanosleep_error4.phpt2 time_nanosleep — Delay for a number of seconds and nanoseconds
/PHP-8.3/ext/standard/tests/streams/
H A Dstream_select_null_usec.phpt31 …stream_select(): Argument #5 ($microseconds) must be null when argument #4 ($seconds) is null in %s
/PHP-8.3/ext/openssl/tests/
H A Dbug74341.phpt2 Bug #74341 (openssl_x509_parse fails to parse ASN.1 UTCTime without seconds)
/PHP-8.3/ext/gmp/tests/
H A Dgmp_random_bits.phpt23 // 0.5 seconds to make sure the numbers stay in range
H A Dgmp_random_range.phpt43 // 0.5 seconds to make sure the numbers stay in range
/PHP-8.3/sapi/fpm/
H A Dphp-fpm.conf.in72 ; Default Unit: seconds
78 ; Default Unit: seconds
121 ; in seconds, between health report notification to systemd.
124 ; Default Unit: seconds
/PHP-8.3/Zend/
H A Dzend_execute_API.c1368 static void zend_set_timeout_ex(zend_long seconds, bool reset_signals);
1501 static void zend_set_timeout_ex(zend_long seconds, bool reset_signals) /* {{{ */ in zend_timeout_handler() argument
1506 if (!seconds) { in zend_timeout_handler()
1530 zend_max_execution_timer_settime(seconds); in zend_timeout_handler()
1550 if (seconds < 0 || seconds > 999999999) { in zend_timeout_handler()
1551 seconds = 0; in zend_timeout_handler()
1554 if(seconds) { in zend_timeout_handler()
1555 t_r.it_value.tv_sec = seconds; in zend_timeout_handler()
1595 void zend_set_timeout(zend_long seconds, bool reset_signals) /* {{{ */ in zend_set_timeout() argument
1598 EG(timeout_seconds) = seconds; in zend_set_timeout()
[all …]
/PHP-8.3/ext/oci8/tests/
H A Dcalltimeout1.phpt45 $r = mysleep($c, 8); // seconds
/PHP-8.3/ext/pcntl/
H A Dpcntl.stub.php941 function pcntl_sigtimedwait(array $signals, &$info = [], int $seconds = 0, int $nanoseconds = 0): i… argument
963 function pcntl_alarm(int $seconds): int {} argument
/PHP-8.3/ext/pdo_oci/tests/
H A Dpdo_oci_attr_call_timeout.phpt57 $r = mysleep($dbh, 8); // seconds
H A Doci_success_with_info.phpt76 sleep(3); // 2 seconds is causing random test failures

Completed in 52 milliseconds

1234