Home
last modified time | relevance | path

Searched refs:timeout (Results 51 – 75 of 122) sorted by relevance

12345

/PHP-8.1/ext/mysqli/tests/
H A Dbug79375.phpt2 Bug #79375: mysqli_store_result does not report error from lock wait timeout
152 Lock wait timeout exceeded; try restarting transaction
157 Lock wait timeout exceeded; try restarting transaction
162 Lock wait timeout exceeded; try restarting transaction
167 Lock wait timeout exceeded; try restarting transaction
172 Lock wait timeout exceeded; try restarting transaction
/PHP-8.1/ext/snmp/
H A Dsnmp_arginfo.h8 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timeout, IS_LONG, 0, "-1")
18 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timeout, IS_LONG, 0, "-1")
32 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timeout, IS_LONG, 0, "-1")
70 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timeout, IS_LONG, 0, "-1")
85 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timeout, IS_LONG, 0, "-1")
102 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timeout, IS_LONG, 0, "-1")
121 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timeout, IS_LONG, 0, "-1")
/PHP-8.1/ext/standard/tests/network/
H A Dfsockopen_basic.phpt22 $timeout = 1.5;
25 $client = fsockopen($hostname, $port, $errno, $errstr, $timeout);
/PHP-8.1/travis/
H A Dtest.sh11 --set-timeout 120 -j$JOBS \
/PHP-8.1/sapi/fpm/tests/
H A Dfcgi.inc119 * Connect timeout in milliseconds
125 * Read/Write timeout in milliseconds
203 * Set the connect timeout
205 * @param int number of milliseconds before connect will timeout
213 * Get the connect timeout
223 * Set the read/write timeout
234 * Get the read timeout
236 * @return int number of milliseconds before read will timeout
246 * @param int millisecond timeout
612 // Reset timeout on socket for now
[all …]
H A Dbug76601-reload-child-signals.phpt17 ; some value twice greater than tester->getLogLines() timeout
34 * than timeout in log reading functions.
H A Dproc-idle-timeout.phpt37 // wait for process idle timeout
/PHP-8.1/ext/sockets/tests/
H A Dmcast_helpers.php.inc6 die("Socket read timeout hit. Can be a bug, a test bug, or a firewall issue.");
/PHP-8.1/ext/standard/
H A Dhttp_fopen_wrapper.c140 struct timeval timeout; in php_stream_url_wrap_http_ex() local
207 timeout.tv_sec = (time_t) d; in php_stream_url_wrap_http_ex()
208 timeout.tv_usec = (size_t) ((d - timeout.tv_sec) * 1000000); in php_stream_url_wrap_http_ex()
210 timeout.tv_sec = (long) d; in php_stream_url_wrap_http_ex()
211 timeout.tv_usec = (long) ((d - timeout.tv_sec) * 1000000); in php_stream_url_wrap_http_ex()
215 timeout.tv_sec = FG(default_socket_timeout); in php_stream_url_wrap_http_ex()
217 timeout.tv_sec = (long)FG(default_socket_timeout); in php_stream_url_wrap_http_ex()
219 timeout.tv_usec = 0; in php_stream_url_wrap_http_ex()
224 NULL, &timeout, context, &errstr, NULL); in php_stream_url_wrap_http_ex()
227 php_stream_set_option(stream, PHP_STREAM_OPTION_READ_TIMEOUT, 0, &timeout); in php_stream_url_wrap_http_ex()
H A Dstreamsfuncs.c105 double timeout; in PHP_FUNCTION() local
121 Z_PARAM_DOUBLE_OR_NULL(timeout, timeout_is_null) in PHP_FUNCTION()
129 timeout = (double)FG(default_socket_timeout); in PHP_FUNCTION()
140 if (timeout < 0.0 || timeout >= (double) PHP_TIMEOUT_ULL_MAX / 1000000.0) { in PHP_FUNCTION()
143 conv = (php_timeout_ull) (timeout * 1000000.0); in PHP_FUNCTION()
263 double timeout; in PHP_FUNCTION() local
276 Z_PARAM_DOUBLE_OR_NULL(timeout, timeout_is_null) in PHP_FUNCTION()
281 timeout = (double)FG(default_socket_timeout); in PHP_FUNCTION()
288 if (timeout < 0.0 || timeout >= (double) PHP_TIMEOUT_ULL_MAX / 1000000.0) { in PHP_FUNCTION()
291 conv = (php_timeout_ull) (timeout * 1000000.0); in PHP_FUNCTION()
/PHP-8.1/ext/snmp/tests/
H A Dwrong_hostname.phpt19 var_dump(snmpget('192.168..6.1', 'community', '.1.3.6.1.2.1.1.1.0', $timeout, $retries));
H A Dbug60749.phpt22 $session = new SNMP(SNMP::VERSION_1, "$hostname:$port", $community, $timeout, $retries);
/PHP-8.1/ext/standard/tests/streams/
H A Dstream_get_meta_data_socket_variation2.phpt20 echo "\n\nSet a timeout on the client and attempt a read:\n";
57 Set a timeout on the client and attempt a read:
/PHP-8.1/tests/func/
H A D005a.phpt2 Testing register_shutdown_function() with timeout. (Bug: #21513)
/PHP-8.1/ext/standard/tests/file/windows_mb_path/
H A Dbug74923.phpt14 /* No way to affect timeout here. On different systems this might take some
/PHP-8.1/ext/openssl/
H A Dxp_ssl.c1893 struct timeval start_time, *timeout; in php_openssl_enable_crypto() local
1925 timeout = sslsock->is_client ? &sslsock->connect_timeout : &sslsock->s.timeout; in php_openssl_enable_crypto()
1926 …has_timeout = !sslsock->s.is_blocked && (timeout->tv_sec > 0 || (timeout->tv_sec == 0 && timeout->… in php_openssl_enable_crypto()
2041 struct timeval *timeout = NULL; in php_openssl_sockop_io() local
2053 timeout = &sslsock->s.timeout; in php_openssl_sockop_io()
2060 …if (!sslsock->s.is_blocked && timeout && (timeout->tv_sec > 0 || (timeout->tv_sec == 0 && timeout-… in php_openssl_sockop_io()
2330 xparam->inputs.timeout, in php_openssl_tcp_sockop_accept()
2446 if (sslsock->s.timeout.tv_sec == -1) { in php_openssl_sockop_set_option()
2659 struct timeval *timeout, in php_openssl_ssl_socket_factory() argument
2675 sslsock->s.timeout.tv_usec = 0; in php_openssl_ssl_socket_factory()
[all …]
/PHP-8.1/.github/actions/test-macos/
H A Daction.yml25 --set-timeout 120
/PHP-8.1/ext/curl/tests/
H A Dbug79033.phpt2 Bug #79033 (Curl timeout error with specific url and post)
/PHP-8.1/.github/actions/test-libmysqlclient/
H A Daction.yml20 --offline --show-diff --show-slow 1000 --set-timeout 120 \
/PHP-8.1/ext/openssl/tests/
H A Dstream_server_reneg_limit.phpt52 stream_select($r, $w, $e, $timeout=42);
55 if ($sock === $server && ($client = stream_socket_accept($server, $timeout = 42))) {
H A Dbug62890.phpt2 Bug #62890 (default_socket_timeout=-1 causes connection to timeout)
/PHP-8.1/sapi/fpm/fpm/
H A Dfpm_process_ctl.c181 int sig, timeout; in fpm_pctl_action_next() local
193 timeout = fpm_global_config.process_control_timeout; in fpm_pctl_action_next()
200 timeout = 1; in fpm_pctl_action_next()
205 fpm_pctl_timeout_set(timeout); in fpm_pctl_action_next()
/PHP-8.1/sapi/cli/tests/
H A Dphp_cli_server.inc111 $timeout = 1.0;
112 $fp = fsockopen(PHP_CLI_SERVER_HOSTNAME, PHP_CLI_SERVER_PORT, $errno, $errstr, $timeout);
/PHP-8.1/ext/ftp/
H A Dftp.stub.php19 … function ftp_connect(string $hostname, int $port = 21, int $timeout = 90): FTP\Connection|false {} argument
22 …function ftp_ssl_connect(string $hostname, int $port = 21, int $timeout = 90): FTP\Connection|fals… argument
/PHP-8.1/
H A Drun-tests.php533 $timeout = $argv[++$i] ?? '';
534 if (!preg_match('/^\d+$/', $timeout)) {
535 … error("'$timeout' is not a valid number of seconds, try e.g. --set-timeout 60 for 1 minute");
537 $environment['TEST_TIMEOUT'] = intval($timeout, 10);

Completed in 63 milliseconds

12345