Home
last modified time | relevance | path

Searched refs:seconds (Results 1 – 25 of 57) sorted by last modified time

123

/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch48 +/* CONFIGURE: How many seconds to allow for reading the subsequent requests
53 /* CONFIGURE: How many seconds before an idle connection gets closed.
/PHP-5.5/sapi/litespeed/
H A DREADME159 * LSAPI_MAX_IDLE (default value: 300 seconds)
177 * LSAPI_MAX_PROCESS_TIME (default value: 300 seconds)
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in62 ; Default Unit: seconds
68 ; Default Unit: seconds
114 ; Default Unit: seconds
216 ; pm.process_idle_timeout - The number of seconds after which
247 ; The number of seconds after which an idle process will be killed.
263 ; start since - number of seconds since FPM has started;
313 ; start since - the number of seconds since the process has started;
388 ; - %{seconds}d (default)
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_conf.c282 int seconds; in fpm_conf_set_time() local
291 seconds = 60 * atoi(val); in fpm_conf_set_time()
295 seconds = 60 * 60 * atoi(val); in fpm_conf_set_time()
299 seconds = 24 * 60 * 60 * atoi(val); in fpm_conf_set_time()
308 seconds = atoi(val); in fpm_conf_set_time()
312 * (int *) ((char *) *config + offset) = seconds; in fpm_conf_set_time()
/PHP-5.5/
H A Dphp.ini-development123 ; Development Value: 60 (60 seconds)
124 ; Production Value: 60 (60 seconds)
180 ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
369 ; Maximum execution time of each script, in seconds
379 ; Development Value: 60 (60 seconds)
380 ; Production Value: 60 (60 seconds)
818 ; Default timeout for socket based streams (seconds)
1144 ; Maximum time (in seconds) for connect timeout. -1 means no limit
1238 ; Connection: The maximum number of seconds a process is allowed to
1244 ; Connection: The number of seconds that must pass before issuing a
[all …]
H A Dphp.ini-production123 ; Development Value: 60 (60 seconds)
124 ; Production Value: 60 (60 seconds)
180 ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
369 ; Maximum execution time of each script, in seconds
379 ; Development Value: 60 (60 seconds)
380 ; Production Value: 60 (60 seconds)
818 ; Default timeout for socket based streams (seconds)
1144 ; Maximum time (in seconds) for connect timeout. -1 means no limit
1238 ; Connection: The maximum number of seconds a process is allowed to
1244 ; Connection: The number of seconds that must pass before issuing a
[all …]
/PHP-5.5/main/
H A Dmain.c1478 void php_on_timeout(int seconds TSRMLS_DC) in php_on_timeout()
/PHP-5.5/ext/standard/tests/time/
H A Dbug60222.phpt10 Warning: time_nanosleep(): The seconds value must be greater than 0 in %s on line %d
/PHP-5.5/ext/standard/tests/streams/
H A Dstream_set_timeout_error.phpt5 /* Prototype : proto bool stream_set_timeout(resource stream, int seconds, int microseconds)
6 * Description: Set timeout on stream read to seconds + microseonds
27 $seconds = 10;
30 var_dump( stream_set_timeout($client, $seconds, $microseconds, $extra_arg) );
35 $seconds = 10;
41 var_dump( stream_set_timeout($client, $seconds) );
44 var_dump( stream_set_timeout($seconds, $seconds) );
48 var_dump( stream_set_timeout($filestream, $seconds) );
/PHP-5.5/ext/standard/tests/misc/
H A Dtime_nanosleep_error2.phpt2 time_nanosleep — Delay for a number of seconds and nanoseconds
H A Dtime_nanosleep_error1.phpt2 time_nanosleep — Delay for a number of seconds and nanoseconds
H A Dtime_nanosleep_error3.phpt2 time_nanosleep — Delay for a number of seconds and nanoseconds
17 Warning: time_nanosleep(): The seconds value must be greater than 0 in %stime_nanosleep_error3.php …
H A Dtime_nanosleep_error4.phpt2 time_nanosleep — Delay for a number of seconds and nanoseconds
H A Dtime_nanosleep_error5.phpt2 time_nanosleep — Delay for a number of seconds and nanoseconds
14 Warning: time_nanosleep(): nanoseconds was not in the range 0 to 999 999 999 or seconds was negativ…
/PHP-5.5/ext/standard/tests/general_functions/
H A Dsleep_basic.phpt9 /* Prototype : int sleep ( int $seconds )
10 * Description: Delays the program execution for the given number of seconds .
16 $sleeptime = 5; // sleep for 5 seconds
31 echo "Thread slept for " . $time . " seconds\n";
42 Thread slept for %f seconds
H A Dsleep_error.phpt5 /* Prototype : int sleep ( int $seconds )
6 * Description: Delays the program execution for the given number of seconds .
17 $seconds = 10;
19 var_dump( sleep($seconds, $extra_arg) );
22 $seconds = -10;
23 var_dump( sleep($seconds) );
42 Warning: sleep(): Number of seconds must be greater than or equal to 0 in %s on line %d
H A Dusleep_basic.phpt10 * Description: Delays program execution for the given number of micro seconds.
18 $sleeptime = 5000000; // == 5 seconds
30 echo "Thread slept for " . $time . " micro-seconds\n";
41 Thread slept for %f micro-seconds
H A Dusleep_error.phpt6 * Description: Delays program execution for the given number of micro seconds.
18 $seconds = 10;
20 var_dump( usleep($seconds, $extra_arg) );
23 $seconds = -10;
24 var_dump( usleep($seconds) );
H A Dgetrusage_basic.phpt25 echo "User time used (seconds) " . $dat["ru_utime.tv_sec"] . "\n";
31 User time used (seconds) %d
/PHP-5.5/ext/standard/
H A Dstreamsfuncs.c1381 long seconds, microseconds = 0; in PHP_FUNCTION() local
1386 if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &socket, &seconds, &microseconds) == FAILURE) { in PHP_FUNCTION()
1392 t.tv_sec = seconds; in PHP_FUNCTION()
H A Dbasic_functions.c138 ZEND_ARG_INFO(0, seconds)
676 ZEND_ARG_INFO(0, seconds)
685 ZEND_ARG_INFO(0, seconds)
2116 ZEND_ARG_INFO(0, seconds)
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c31625 int seconds = (microseconds+999999)/1000000;
31626 sleep(seconds);
31628 return seconds*1000000;
/PHP-5.5/ext/phar/tests/zip/files/
H A Dcorrupt_zipmaker.php.inc82 ($mtime['seconds']>>1)));
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_class_constants.phpt55 Sets the timeout value in seconds for communications with the database.
/PHP-5.5/ext/pcntl/
H A Dpcntl.c87 ZEND_ARG_INFO(0, seconds)
122 ZEND_ARG_INFO(0, seconds)
559 long seconds; in PHP_FUNCTION() local
561 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &seconds) == FAILURE) in PHP_FUNCTION()
564 RETURN_LONG ((long) alarm(seconds)); in PHP_FUNCTION()

Completed in 328 milliseconds

123