| /dokuwiki/lib/scripts/ |
| H A D | delay.js | 22 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 D | locktimer.js | 5 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 D | tree.js | 35 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 D | Client.php | 26 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 D | ClientSSL.php | 55 …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 D | UniversalFeedCreator.php | 156 …* @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 D | FeedCreator.php | 235 …* @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 D | Client.php | 24 … 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 D | File.php | 82 * @param int $timeout 89 …public function __construct(string $url, int $timeout = 10, int $redirects = 5, ?array $headers = … argument 131 curl_setopt($fp, CURLOPT_TIMEOUT, $timeout); 132 curl_setopt($fp, CURLOPT_CONNECTTIMEOUT, $timeout); 174 …$this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_… 195 $fp = @fsockopen($socket_host, $url_parts['port'], $errno, $errstr, $timeout); 200 stream_set_timeout($fp, $timeout); 248 …$this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_…
|
| H A D | Locator.php | 31 public $timeout = 10; variable in SimplePie\\Locator 67 …public function __construct(File $file, int $timeout = 10, ?string $useragent = null, int $max_che… argument 71 $this->timeout = $timeout; 458 'timeout' => $this->timeout,
|
| H A D | Sanitize.php | 71 public $timeout = 10; variable in SimplePie\\Sanitize 202 …public function pass_file_data(string $file_class = File::class, int $timeout = 10, string $userag… argument 205 if ($timeout) { 206 $this->timeout = $timeout; 818 'timeout' => $this->timeout,
|
| H A D | SimplePie.php | 452 public $timeout = 10; variable in SimplePie\\SimplePie 838 * @param int $timeout The maximum number of seconds to spend waiting to retrieve a feed. 841 public function set_timeout(int $timeout = 10) argument 851 $this->timeout = (int) $timeout; 1030 if ($this->timeout != 10) { 1031 $options[CURLOPT_TIMEOUT] = $this->timeout; 1999 $this->timeout, 3451 'timeout' => $this->timeout,
|
| /dokuwiki/_test/tests/inc/ |
| H A D | httpclient_mock.php | 20 $this->timeout = 8; // slightly faster timeouts
|
| /dokuwiki/inc/ |
| H A D | deprecated.php | 20 … 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 D | infoutils.php | 53 $http->timeout = 12; 400 $http->timeout = 3;
|
| H A D | io.php | 659 $http->timeout = 25; //max. 25 sec
|
| H A D | media.php | 1938 $http->timeout = 25; //max. 25 sec
|
| /dokuwiki/inc/Sitemap/ |
| H A D | Mapper.php | 149 $http->timeout = 8;
|
| /dokuwiki/inc/HTTP/ |
| H A D | HTTPClient.php | 25 public $timeout = 15; // read timeout (seconds) variable in dokuwiki\\HTTP\\HTTPClient 257 $socket = @fsockopen($server, $port, $errno, $errstr, $this->timeout); 585 if ($time_used > $this->timeout) 631 if ($time_used > $this->timeout) 685 if ($time_used > $this->timeout)
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
| H A D | SSH2.php | 788 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; 2823 return $this->timeout; 2832 * @param mixed $timeout 2834 public function setTimeout($timeout) argument 2836 $this->timeout = $this->curTimeout = $timeout; 2874 $this->curTimeout = $this->timeout; [all …]
|
| H A D | SFTP.php | 357 * @param int $timeout 359 public function __construct($host, $port = 22, $timeout = 10) argument 361 parent::__construct($host, $port, $timeout); 3281 $this->curTimeout = $this->timeout; 3344 $this->curTimeout = $this->timeout;
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | Installer.php | 293 $http->timeout = 60 * 4 - 5; // nearly 4 minutes 295 $http->timeout = 25; // max. 25 sec (a bit less than default execution time)
|
| H A D | Repository.php | 64 $httpclient->timeout = 5;
|
| /dokuwiki/_test/ |
| H A D | composer.lock | 683 "description": "Invoke callables with a timeout",
|
| /dokuwiki/lib/scripts/jquery/ |
| H A D | jquery.min.js | 2 …("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=ie.setTimeout(function(){T.abort("timeout")…
|