Home
last modified time | relevance | path

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

/dokuwiki/lib/scripts/
H A Ddelay.js22 add: function (func, timeout) { argument
25 return window.setTimeout('timer.execDispatch(' + id + ')', timeout);
35 function Delay (func, timeout) { argument
37 if (timeout) {
38 this.timeout = timeout;
44 timeout: 500, property in Delay
58 this.timeout);
H A Dlocktimer.js5 timeout: 0, property
26 init: function(timeout,draft,edid){ argument
37 dw_locktimer.timeout = timeout*1000;
77 dw_locktimer.timerID = window.setTimeout(dw_locktimer.warning, dw_locktimer.timeout);
H A Dtree.js35 var $listitem, $sublist, timeout, $clicky, show_sublist, dw_tree, opening;
83 timeout = window.setTimeout(
87 window.clearTimeout(timeout);
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClient.php26 protected $timeout; variable in IXR\\Client\\Client
38 … public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) argument
61 $this->timeout = $timeout;
93 if ($this->timeout) {
95 $fp = fsockopen($this->server, $this->port, $errno, $errstr, $this->timeout);
H A DClientSSL.php55 …public function __construct($server, $path = false, $port = 443, $timeout = false, $timeout_io = n… argument
57 parent::__construct($server, $path, $port, $timeout, $timeout_io);
111 $this->timeout = (int)$newTimeOut;
121 return $this->timeout;
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/
H A DUniversalFeedCreator.php156 …* @param int $timeout optional the timeout in seconds before a cached version is refreshed (de…
159 public function useCached($format = "RSS0.91", $filename = "", $timeout = 3600) argument
162 $this->_feed->useCached($filename, $timeout);
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DFeedCreator.php235 …* @param int $timeout optional the timeout in seconds before a cached version is refreshed …
238 public function useCached($filename = "", $timeout = 3600) argument
240 $this->_timeout = $timeout;
244 if (file_exists($filename) AND (time() - filemtime($filename) < $timeout)) {
/dokuwiki/inc/Remote/IXR/
H A DClient.php24 … public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) argument
26 parent::__construct($server, $path, $port, $timeout, $timeout_io);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php71 …public function __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = nul… argument
103 curl_setopt($fp, CURLOPT_TIMEOUT, $timeout);
104 curl_setopt($fp, CURLOPT_CONNECTTIMEOUT, $timeout);
137 …$this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_…
154 $fp = @fsockopen($socket_host, $url_parts['port'], $errno, $errstr, $timeout);
159 stream_set_timeout($fp, $timeout);
202 …$this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_…
H A DLocator.php58 public $timeout; variable in SimplePie\\Locator
73 …public function __construct(\SimplePie\File $file, $timeout = 10, $useragent = null, $max_checked_… argument
77 $this->timeout = $timeout;
228 …$feed = $this->registry->create(File::class, [$href, $this->timeout, 5, $headers, $this->useragent…
335 …$feed = $this->registry->create(File::class, [$value, $this->timeout, 5, $headers, $this->useragen…
357 …$feed = $this->registry->create(File::class, [$value, $this->timeout, 5, null, $this->useragent, $…
H A DSanitize.php86 public $timeout = 10; variable in SimplePie\\Sanitize
168 …public function pass_file_data($file_class = 'SimplePie\File', $timeout = 10, $useragent = '', $fo… argument
170 if ($timeout) {
171 $this->timeout = (string) $timeout;
427 … $this->registry->create(File::class, [$img->getAttribute('src'), $this->timeout, 5, ['X-FORWARDED…
H A DSimplePie.php835 * @param int $timeout The maximum number of seconds to spend waiting to retrieve a feed.
837 public function set_timeout($timeout = 10) argument
839 $this->timeout = (int) $timeout;
956 if ($this->timeout != 10) {
957 $options[CURLOPT_TIMEOUT] = $this->timeout;
1552 …$this->sanitize->pass_file_data($this->registry->get_class(File::class), $this->timeout, $this->us…
1775 …$file = $this->registry->create(File::class, [$this->feed_url, $this->timeout / 10, 5, $headers, $…
1817 …$file = $this->registry->create(File::class, [$this->feed_url, $this->timeout, 5, $headers, $this-…
1830 …$locate = $this->registry->create(Locator::class, [&$file, $this->timeout, $this->useragent, $this…
/dokuwiki/_test/tests/inc/
H A Dhttpclient_mock.php20 $this->timeout = 8; // slightly faster timeouts
/dokuwiki/inc/
H A Ddeprecated.php20 … public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) argument
23 parent::__construct($server, $path, $port, $timeout, $timeout_io);
H A Dinfoutils.php53 $http->timeout = 12;
403 $http->timeout = 3;
H A Dio.php659 $http->timeout = 25; //max. 25 sec
H A Dmedia.php1938 $http->timeout = 25; //max. 25 sec
/dokuwiki/inc/Sitemap/
H A DMapper.php149 $http->timeout = 8;
/dokuwiki/inc/HTTP/
H A DHTTPClient.php25 public $timeout = 15; // read timeout (seconds) variable in dokuwiki\\HTTP\\HTTPClient
257 $socket = @fsockopen($server, $port, $errno, $errstr, $this->timeout);
591 if ($time_used > $this->timeout)
637 if ($time_used > $this->timeout)
691 if ($time_used > $this->timeout)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php788 protected $timeout; variable in phpseclib3\\Net\\SSH2
1182 * @param int $timeout
1185 public function __construct($host, $port = 22, $timeout = 10) argument
1277 $this->timeout = $timeout;
1395 $this->curTimeout = $this->timeout;
2818 return $this->timeout;
2827 * @param mixed $timeout
2829 public function setTimeout($timeout) argument
2831 $this->timeout = $this->curTimeout = $timeout;
2869 $this->curTimeout = $this->timeout;
[all …]
H A DSFTP.php357 * @param int $timeout
359 public function __construct($host, $port = 22, $timeout = 10) argument
361 parent::__construct($host, $port, $timeout);
3274 $this->curTimeout = $this->timeout;
3337 $this->curTimeout = $this->timeout;
/dokuwiki/lib/plugins/extension/
H A DInstaller.php293 $http->timeout = 60 * 4 - 5; // nearly 4 minutes
295 $http->timeout = 25; // max. 25 sec (a bit less than default execution time)
H A DRepository.php64 $httpclient->timeout = 5;
/dokuwiki/_test/
H A Dcomposer.lock765 "description": "Invoke callables with a timeout",
/dokuwiki/lib/scripts/jquery/
H A Djquery.min.js2 …("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=ie.setTimeout(function(){T.abort("timeout")…