Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 25 of 105) sorted by path

12345

/PHP-7.4/
H A D.travis.yml97 …g "FAIL,XFAIL,BORK,WARN,LEAK,SKIP" --offline --show-diff --show-slow 1000 --set-timeout 120 -j$JOBS
H A DNEWS221 . Fixed bug #80728 (PHP built-in web server resets timeout when it can kill
569 timeout). (Kamil Tekiela, Nikita)
844 . Fixed bug #62890 (default_socket_timeout=-1 causes connection to timeout).
922 with <1s timeout). (Joe Cai)
1194 . Fixed bug #79033 (Curl timeout error with specific url and post). (cmb)
1808 . Fixed bug #76342 (file_get_contents waits twice specified timeout).
/PHP-7.4/appveyor/
H A Dtest_task.bat103 nmake test TESTS="%OPCACHE_OPTS% -q --offline --show-diff --show-slow 1000 --set-timeout 120 -g FAI…
/PHP-7.4/azure/i386/
H A Dtest.yml22 --set-timeout 120 \
/PHP-7.4/azure/macos/
H A Dtest.yml18 --set-timeout 120 \
/PHP-7.4/azure/
H A Dtest.yml23 --set-timeout 120 \
/PHP-7.4/docs/
H A Dstreams.md93 int socktype, int timeout, int persistent);
97 struct timeval *timeout);
/PHP-7.4/ext/curl/
H A Dinterface.c319 ZEND_ARG_INFO(0, timeout)
H A Dmulti.c193 static void _make_timeval_struct(struct timeval *to, double timeout) /* {{{ */ in _make_timeval_struct() argument
197 conv = (unsigned long) (timeout * 1000000.0); in _make_timeval_struct()
210 double timeout = 1.0; in PHP_FUNCTION() local
225 Z_PARAM_DOUBLE(timeout) in PHP_FUNCTION()
233 error = curl_multi_wait(mh->multi, NULL, 0, (unsigned long) (timeout * 1000.0), &numfds); in PHP_FUNCTION()
241 _make_timeval_struct(&to, timeout); in PHP_FUNCTION()
/PHP-7.4/ext/curl/tests/
H A Dbug79033.phpt2 Bug #79033 (Curl timeout error with specific url and post)
H A Dcurl_multi_select_basic1.phpt10 /* Prototype : resource curl_multi_select($mh, $timeout=1.0])
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic11266 # for version >= 2 maximal timeout can be 65534
H A Dmagic私はガラスを食べられます11266 # for version >= 2 maximal timeout can be 65534
/PHP-7.4/ext/ftp/
H A Dphp_ftp.c45 ZEND_ARG_INFO(0, timeout)
52 ZEND_ARG_INFO(0, timeout)
/PHP-7.4/ext/ftp/tests/
H A Dftp_ssl_connect_error.phpt23 echo "\n-- Testing ftp_ssl_connect() function timeout warning for value 0 --\n";
47 -- Testing ftp_ssl_connect() function timeout warning for value 0 --
H A Dserver.inc202 // do nothing so test hits timeout
/PHP-7.4/ext/imap/
H A Dphp_imap.c464 ZEND_ARG_INFO(0, timeout)
4889 zend_long ttype, timeout=-1; in PHP_FUNCTION() local
4892 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &ttype, &timeout) == FAILURE) { in PHP_FUNCTION()
4896 if (timeout == -1) { in PHP_FUNCTION()
4915 timeout = (zend_long) mail_parameters(NIL, timeout_type, NIL); in PHP_FUNCTION()
4916 RETURN_LONG(timeout); in PHP_FUNCTION()
4917 } else if (timeout >= 0) { in PHP_FUNCTION()
4936 timeout = (zend_long) mail_parameters(NIL, timeout_type, (void *) timeout); in PHP_FUNCTION()
/PHP-7.4/ext/ldap/
H A Dldap.c3087 if (timeout) { in PHP_FUNCTION()
3092 if (!timeout) { in PHP_FUNCTION()
3096 ldap_memfree(timeout); in PHP_FUNCTION()
3101 int timeout; in PHP_FUNCTION() local
3115 if (timeout) { in PHP_FUNCTION()
3120 if (!timeout) { in PHP_FUNCTION()
3124 ldap_memfree(timeout); in PHP_FUNCTION()
3259 struct timeval timeout; in PHP_FUNCTION() local
3263 timeout.tv_usec = 0; in PHP_FUNCTION()
3271 int timeout; in PHP_FUNCTION() local
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dbug79375.phpt2 Bug #79375: mysqli_store_result does not report error from lock wait timeout
150 Lock wait timeout exceeded; try restarting transaction
155 Lock wait timeout exceeded; try restarting transaction
160 Lock wait timeout exceeded; try restarting transaction
165 Lock wait timeout exceeded; try restarting transaction
170 Lock wait timeout exceeded; try restarting transaction
H A Dmysqli_no_reconnect.phpt66 printf("[009] Server should have killed the timeout connection, [%d] %s\n",
H A Dmysqli_reconnect.phpt68 printf("[009] Server should have killed the timeout connection, [%d] %s\n",
91 …printf("[014] Cannot KILL timeout connection, [%d] %s\n", mysqli_errno($link2), mysqli_error($link…
/PHP-7.4/ext/openssl/tests/
H A DServerClientTestCase.inc12 function phpt_wait($worker = WORKER_DEFAULT_NAME, $timeout = null)
14 ServerClientTestCase::getInstance()->wait($worker, $timeout);
136 public function wait($worker, $timeout = null)
139 if ($timeout === null) {
146 $result = stream_select($read, $write, $except, $timeout);
H A Dbug62890.phpt2 Bug #62890 (default_socket_timeout=-1 causes connection to timeout)
H A Dstream_server_reneg_limit.phpt51 stream_select($r, $w, $e, $timeout=42);
54 if ($sock === $server && ($client = stream_socket_accept($server, $timeout = 42))) {
/PHP-7.4/ext/openssl/
H A Dxp_ssl.c1880 struct timeval start_time, *timeout; in php_openssl_enable_crypto() local
1912 timeout = sslsock->is_client ? &sslsock->connect_timeout : &sslsock->s.timeout; in php_openssl_enable_crypto()
1913 …has_timeout = !sslsock->s.is_blocked && (timeout->tv_sec > 0 || (timeout->tv_sec == 0 && timeout->… in php_openssl_enable_crypto()
2046 struct timeval *timeout = NULL; in php_openssl_sockop_io() local
2058 timeout = &sslsock->s.timeout; in php_openssl_sockop_io()
2065 …if (!sslsock->s.is_blocked && timeout && (timeout->tv_sec > 0 || (timeout->tv_sec == 0 && timeout-… in php_openssl_sockop_io()
2335 xparam->inputs.timeout, in php_openssl_tcp_sockop_accept()
2447 if (sslsock->s.timeout.tv_sec == -1) { in php_openssl_sockop_set_option()
2660 struct timeval *timeout, in php_openssl_ssl_socket_factory() argument
2676 sslsock->s.timeout.tv_usec = 0; in php_openssl_ssl_socket_factory()
[all …]

Completed in 210 milliseconds

12345