Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 3 of 3) sorted by relevance

/php-uv/.github/workflows/
H A Dci.yml37 - run: php run-tests.php -p `which php` --offline --show-diff --set-timeout 120
/php-uv/
H A DREADME.md703 ### void uv_timer_start(resource $timer, long $timeout, long $repeat, callable $callback)
713 *long $timeout*: periodical event starts when after this timeout. 1000 is 1 sec.
H A Dphp_uv.c2917 ZEND_ARG_INFO(0, timeout)
2932 ZEND_ARG_INFO(0, timeout)
4116 zend_long timeout, repeat = 0; local
4123 Z_PARAM_LONG(timeout)
4129 if (timeout < 0) {
4130 php_error_docref(NULL, E_WARNING, "timeout value have to be larger than 0. given %lld", timeout);
4148 uv_timer_start((uv_timer_t*)&uv->uv.timer, php_uv_timer_cb, timeout, repeat);

Completed in 26 milliseconds