Home
last modified time | relevance | path

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

1234

/PHP-8.1/ext/pdo_mysql/tests/
H A Dpdo_mysql_class_constants.phpt64 Sets the timeout value in seconds for communications with the database.
/PHP-8.1/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.inc1498 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1523 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1603 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1649 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1685 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1720 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1755 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
1790 * @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.
594 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
705 * @param int|null $timeoutSeconds Timeout in seconds for reading of all messages.
H A Dstatus.inc212 "# HELP phpfpm_start_since The number of seconds since FPM has started\.\n" .
/PHP-8.1/ext/sockets/
H A Dsockets.stub.php21 function socket_select(?array &$read, ?array &$write, ?array &$except, ?int $seconds, int $microsec… argument
H A Dsockets_arginfo.h8 ZEND_ARG_TYPE_INFO(0, seconds, IS_LONG, 1)
/PHP-8.1/ext/pdo_pgsql/tests/
H A Dgetnotify.phpt72 // Test second parameter, should wait 2 seconds because no notify is queued
/PHP-8.1/Zend/
H A Dzend.h239 void (*on_timeout)(int seconds);
329 extern ZEND_API void (*zend_on_timeout)(int seconds);
H A Dzend_execute.h351 ZEND_API void zend_set_timeout(zend_long seconds, bool reset_signals);
/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_fetch_array_many_rows.phpt13 // do as much as we can do in 5 seconds
H A Dmysqli_poll.phpt126 mysqli_poll(): Argument #4 ($seconds) must be greater than or equal to 0
H A Dmysqli_reconnect.phpt55 // after 2+ seconds the server should kill the connection
H A Dmysqli_no_reconnect.phpt53 // after 2+ seconds the server should kill the connection
/PHP-8.1/sapi/fpm/fpm/
H A Dfpm_conf.c289 int seconds; in fpm_conf_set_time() local
298 seconds = 60 * atoi(val); in fpm_conf_set_time()
302 seconds = 60 * 60 * atoi(val); in fpm_conf_set_time()
306 seconds = 24 * 60 * 60 * atoi(val); in fpm_conf_set_time()
316 seconds = atoi(val); in fpm_conf_set_time()
320 * (int *) ((char *) *config + offset) = seconds; in fpm_conf_set_time()
/PHP-8.1/ext/standard/
H A Dbasic_functions.stub.php15 function set_time_limit(int $seconds): bool {} argument
373 function sleep(int $seconds): int {} argument
382 function time_nanosleep(int $seconds, int $nanoseconds): array|bool {} argument
1579 function stream_select(?array &$read, ?array &$write, ?array &$except, ?int $seconds, ?int $microse… argument
1771 function stream_set_timeout($stream, int $seconds, int $microseconds = 0): bool {} argument
1777 function socket_set_timeout($stream, int $seconds, int $microseconds = 0): bool {} argument
H A Dstreamsfuncs.c1373 zend_long seconds, microseconds = 0; in PHP_FUNCTION() local
1380 Z_PARAM_LONG(seconds) in PHP_FUNCTION()
1388 t.tv_sec = (long)seconds; in PHP_FUNCTION()
1397 t.tv_sec = seconds; in PHP_FUNCTION()
/PHP-8.1/ext/mysqli/
H A Dmysqli.stub.php279 …public static function poll(?array &$read, ?array &$error, array &$reject, int $seconds, int $micr… argument
932 function mysqli_poll(?array &$read, ?array &$error, array &$reject, int $seconds, int $microseconds… argument
/PHP-8.1/
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)
879 ; Default timeout for socket based streams (seconds)
1234 ; Timeout for network requests in seconds.
1253 ; Connection: The maximum number of seconds a process is allowed to
1259 ; Connection: The number of seconds that must pass before issuing a
[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)
881 ; Default timeout for socket based streams (seconds)
1236 ; Timeout for network requests in seconds.
1255 ; Connection: The maximum number of seconds a process is allowed to
1261 ; Connection: The number of seconds that must pass before issuing a
[all …]
/PHP-8.1/sapi/fpm/
H A Dwww.conf.in108 ; pm.process_idle_timeout - The number of seconds after which
145 ; The number of seconds after which an idle process will be killed.
161 ; start since - number of seconds since FPM has started;
211 ; start since - the number of seconds since the process has started;
302 ; - %{seconds}d (default)
/PHP-8.1/sapi/litespeed/
H A DREADME.md153 * `LSAPI_MAX_IDLE` (default value: 300 seconds)
168 * `LSAPI_MAX_PROCESS_TIME` (default value: 300 seconds)
/PHP-8.1/ext/pcntl/
H A Dpcntl.c547 zend_long seconds; in PHP_FUNCTION() local
549 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &seconds) == FAILURE) { in PHP_FUNCTION()
553 RETURN_LONG((zend_long) alarm(seconds)); in PHP_FUNCTION()
/PHP-8.1/ext/session/tests/
H A Dsave_handler.inc106 // long $maxlifetime - GC TTL in seconds. Default: session.gc_maxlifetime
/PHP-8.1/ext/phar/tests/zip/files/
H A Dcorrupt_zipmaker.php.inc81 ($mtime['seconds']>>1)));

Completed in 92 milliseconds

1234