Home
last modified time | relevance | path

Searched refs:seconds (Results 51 – 75 of 85) sorted by relevance

1234

/php-src/ext/pdo_firebird/
H A Dfirebird_statement.c84 unsigned hours = 0, minutes = 0, seconds = 0, fractions = 0; in get_formatted_time_tz() local
91 …if (fb_decode_time_tz(S->H->isc_status, timeTz, &hours, &minutes, &seconds, &fractions, sizeof(tim… in get_formatted_time_tz()
94 time = fb_encode_time(hours, minutes, seconds, fractions); in get_formatted_time_tz()
112 unsigned year, month, day, hours, minutes, seconds, fractions; in get_formatted_timestamp_tz() local
119 …z(S->H->isc_status, timestampTz, &year, &month, &day, &hours, &minutes, &seconds, &fractions, size… in get_formatted_timestamp_tz()
123 ts.timestamp_time = fb_encode_time(hours, minutes, seconds, fractions); in get_formatted_timestamp_tz()
/php-src/ext/pcntl/
H A Dpcntl.stub.php1038 …function pcntl_sigtimedwait(array $signals, &$info = [], int $seconds = 0, int $nanoseconds = 0): … argument
1060 function pcntl_alarm(int $seconds): int {} argument
H A Dpcntl_arginfo.h59 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, seconds, IS_LONG, 0, "0")
93 ZEND_ARG_TYPE_INFO(0, seconds, IS_LONG, 0)
H A Dpcntl.c305 zend_long seconds; in PHP_FUNCTION() local
308 Z_PARAM_LONG(seconds); in PHP_FUNCTION()
311 RETURN_LONG((zend_long) alarm(seconds)); in PHP_FUNCTION()
/php-src/sapi/fpm/tests/
H A Dbug76601-reload-child-signals.phpt40 …e 259: [pool unconfined] child 21337 exited on signal 9 (SIGKILL) after 1.003055 seconds from start
H A Dtester.inc1704 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1729 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1809 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1855 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1891 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1926 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1961 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1996 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
H A Dlogtool.inc133 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
598 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
709 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
H A Dstatus.inc237 "# HELP phpfpm_start_since The number of seconds since FPM has started\.\n" .
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_class_constants.phpt64 Sets the timeout value in seconds for communications with the database.
/php-src/ext/pdo_pgsql/tests/
H A Dgetnotify.phpt72 // Test second parameter, should wait 2 seconds because no notify is queued
/php-src/ext/mysqli/tests/
H A Dmysqli_fetch_array_many_rows.phpt14 // do as much as we can do in 5 seconds
H A Dmysqli_poll.phpt122 mysqli_poll(): Argument #4 ($seconds) must be greater than or equal to 0
H A Dmysqli_no_reconnect.phpt51 // after 2+ seconds the server should kill the connection
/php-src/Zend/
H A Dzend.h252 void (*on_timeout)(int seconds);
361 extern ZEND_API void (*zend_on_timeout)(int seconds);
/php-src/sapi/fpm/fpm/
H A Dfpm_conf.c307 int seconds; in fpm_conf_set_time() local
316 seconds = 60 * atoi(val); in fpm_conf_set_time()
320 seconds = 60 * 60 * atoi(val); in fpm_conf_set_time()
324 seconds = 24 * 60 * 60 * atoi(val); in fpm_conf_set_time()
334 seconds = atoi(val); in fpm_conf_set_time()
338 * (int *) ((char *) *config + offset) = seconds; in fpm_conf_set_time()
/php-src/
H A Dphp.ini-development119 ; Development Value: 60 (60 seconds)
120 ; Production Value: 60 (60 seconds)
176 ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
404 ; Maximum execution time of each script, in seconds
414 ; Development Value: 60 (60 seconds)
415 ; Production Value: 60 (60 seconds)
875 ; Default timeout for socket based streams (seconds)
1216 ; Timeout for network requests in seconds.
1325 ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
1381 ; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
[all …]
H A Dphp.ini-production119 ; Development Value: 60 (60 seconds)
120 ; Production Value: 60 (60 seconds)
176 ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
406 ; Maximum execution time of each script, in seconds
416 ; Development Value: 60 (60 seconds)
417 ; Production Value: 60 (60 seconds)
877 ; Default timeout for socket based streams (seconds)
1218 ; Timeout for network requests in seconds.
1327 ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
1383 ; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
[all …]
/php-src/ext/standard/
H A Dstreamsfuncs.c1419 zend_long seconds, microseconds = 0; in PHP_FUNCTION() local
1426 Z_PARAM_LONG(seconds) in PHP_FUNCTION()
1434 t.tv_sec = (long)seconds; in PHP_FUNCTION()
1443 t.tv_sec = seconds; in PHP_FUNCTION()
H A Dbasic_functions.stub.php1508 function set_time_limit(int $seconds): bool {} argument
1957 function sleep(int $seconds): int {} argument
1966 function time_nanosleep(int $seconds, int $nanoseconds): array|bool {} argument
3384 function stream_select(?array &$read, ?array &$write, ?array &$except, ?int $seconds, ?int $microse…
3579 function stream_set_timeout($stream, int $seconds, int $microseconds = 0): bool {}
3585 function socket_set_timeout($stream, int $seconds, int $microseconds = 0): bool {}
/php-src/sapi/litespeed/
H A DREADME.md153 * `LSAPI_MAX_IDLE` (default value: 300 seconds)
168 * `LSAPI_MAX_PROCESS_TIME` (default value: 300 seconds)
/php-src/ext/mysqli/
H A Dmysqli.stub.php873 …public static function poll(?array &$read, ?array &$error, array &$reject, int $seconds, int $micr…
1519 function mysqli_poll(?array &$read, ?array &$error, array &$reject, int $seconds, int $microseconds…
/php-src/sapi/fpm/
H A Dwww.conf.in113 ; pm.process_idle_timeout - The number of seconds after which
150 ; The number of seconds after which an idle process will be killed.
166 ; start since - number of seconds since FPM has started;
216 ; start since - the number of seconds since the process has started;
307 ; - %{seconds}d (default)
/php-src/ext/session/tests/user_session_module/
H A Dsave_handler.inc106 // long $maxlifetime - GC TTL in seconds. Default: session.gc_maxlifetime
/php-src/ext/sockets/
H A Dsockets.stub.php1946 function socket_select(?array &$read, ?array &$write, ?array &$except, ?int $seconds, int $microsec… argument
/php-src/ext/phar/tests/zip/files/
H A Dcorrupt_zipmaker.php.inc81 ($mtime['seconds']>>1)));

Completed in 93 milliseconds

1234