/dokuwiki/lib/scripts/ |
H A D | delay.js | 11 * To get a timeout for non-global functions, just call 12 * delay.add(func, timeout). 22 add: function (func, timeout) { argument 25 return window.setTimeout('timer.execDispatch(' + id + ')', timeout); 32 * To call a function with a delay, just create a new Delay(func, timeout) and 35 function Delay (func, timeout) { argument 37 if (timeout) { 38 this.timeout = timeout; 44 timeout property in Delay [all...] |
H A D | locktimer.js | 5 timeout: 0, property in dw_locktimer 22 * @param {int} timeout Length of timeout in seconds 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 | 25 /** @var int Connection timeout in seconds */ 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); 192 * Gets the current timeout set for data transfer 201 * Sets the timeout for data transfer
|
H A D | ClientSSL.php | 55 public function __construct($server, $path = false, $port = 443, $timeout = false, $timeout_io = null) argument 57 parent::__construct($server, $path, $port, $timeout, $timeout_io); 104 * Sets the connection timeout (in seconds) 111 $this->timeout = (int)$newTimeOut; 115 * Returns the connection timeout (in seconds) 121 return $this->timeout; 146 //Since 23Jun2004 (0.1.2) - Made timeout a class field 147 curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, $this->timeout);
|
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/ |
H A D | UniversalFeedCreator.php | 152 * @param int $timeout optional the timeout in seconds before a cached version is refreshed (defaults to 3600 = 155 public function useCached($format = "RSS0.91", $filename = "", $timeout = 3600) argument 158 $this->_feed->useCached($filename, $timeout);
|
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
H A D | FeedCreator.php | 233 * @param int $timeout optional the timeout in seconds before a cached version is refreshed (defaults to 236 public function useCached($filename = "", $timeout = 3600) 238 $this->_timeout = $timeout; 242 if (file_exists($filename) AND (time() - filemtime($filename) < $timeout)) { 235 useCached($filename = '', $timeout = 3600) global() argument
|
/dokuwiki/inc/Remote/IXR/ |
H A D | Client.php | 24 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) 26 parent::__construct($server, $path, $port, $timeout, $timeout_io); 35 $this->httpClient->timeout = $timeout; 25 __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) global() argument
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
H A D | File.php | 72 public function __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false, $curl_options = []) argument 104 curl_setopt($fp, CURLOPT_TIMEOUT, $timeout); 105 curl_setopt($fp, CURLOPT_CONNECTTIMEOUT, $timeout); 138 $this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_options); 155 $fp = @fsockopen($socket_host, $url_parts['port'], $errno, $errstr, $timeout); 160 stream_set_timeout($fp, $timeout); 203 $this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_options);
|
H A D | Locator.php | 59 public $timeout; variable in SimplePie\\Locator 74 public function __construct(\SimplePie\File $file, $timeout = 10, $useragent = null, $max_checked_feeds = 10, $force_fsockopen = false, $curl_options = []) argument 78 $this->timeout = $timeout; 229 $feed = $this->registry->create(File::class, [$href, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]); 336 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]); 358 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, null, $this->useragent, $this->force_fsockopen, $this->curl_options]);
|
H A D | Sanitize.php | 87 public $timeout = 10; variable in SimplePie\\Sanitize 169 public function pass_file_data($file_class = 'SimplePie\File', $timeout = 10, $useragent = '', $force_fsockopen = false) argument 171 if ($timeout) { 172 $this->timeout = (string) $timeout; 428 $file = $this->registry->create(File::class, [$img->getAttribute('src'), $this->timeout, 5, ['X-FORWARDED-FOR' => $_SERVER['REMOTE_ADDR']], $this->useragent, $this->force_fsockopen]);
|
H A D | SimplePie.php | 480 public $timeout = 10; variable in SimplePie\\SimplePie 831 * Set the default timeout for fetching remote feeds 837 * @param int $timeout The maximum number of seconds to spend waiting to retrieve a feed. 839 public function set_timeout($timeout = 10) argument 841 $this->timeout = (int) $timeout; 958 if ($this->timeout != 10) { 959 $options[CURLOPT_TIMEOUT] = $this->timeout; 1554 $this->sanitize->pass_file_data($this->registry->get_class(File::class), $this->timeout, $this->useragent, $this->force_fsockopen, $this->curl_options); 1777 $file = $this->registry->create(File::class, [$this->feed_url, $this->timeout/1 [all...] |
/dokuwiki/inc/ |
H A D | FeedParserFile.php | 26 __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false, $curl_options = array()) global() argument
|
H A D | infoutils.php | 53 $http->timeout = 12; 337 $http->timeout = 3;
|
H A D | deprecated.php | 583 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) 586 parent::__construct($server, $path, $port, $timeout, $timeout_io); 581 __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) global() argument
|
H A D | io.php | 658 $http->timeout = 25; //max. 25 sec
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
H A D | SSH1.php | 432 var $timeout; variable in phpseclib\\Net\\SSH1 490 * exec() won't timeout unless some PHP setting forces it too. The timeout specified in the constructor, 491 * however, is non-optional. There will be a timeout, whether or not you set it. If you don't it'll be 518 * @param int $timeout 523 function __construct($host, $port = 22, $timeout = 10, $cipher = self::CIPHER_3DES) argument 548 $this->connectionTimeout = $timeout; 804 * $ssh->exec('ping 127.0.0.1'); on a Linux host will never return and will run indefinitely. setTimeout() makes it so it'll timeout. 805 * Setting $timeout to false or 0 will mean there is no timeout 809 setTimeout($timeout) global() argument [all...] |
H A D | SSH2.php | 711 var $timeout; variable in phpseclib\\Net\\SSH2 853 * Did read() timeout or return normally? 1076 * @param int $timeout 1081 function __construct($host, $port = 22, $timeout = 10) argument 1170 $this->timeout = $timeout; 1258 $this->curTimeout = $this->timeout; 1264 // with stream_select a timeout of 0 means that no timeout takes place; 1265 // with fsockopen a timeout o 2882 setTimeout($timeout) global() argument [all...] |
H A D | SFTP.php | 360 * @param int $timeout 364 function __construct($host, $port = 22, $timeout = 10) argument 366 parent::__construct($host, $port, $timeout); 3597 // in SSH2.php the timeout is cumulative per function call. eg. exec() will 3598 // timeout after 10s. but for SFTP.php it's cumulative per packet 3599 $this->curTimeout = $this->timeout; 3673 // in SSH2.php the timeout is cumulative per function call. eg. exec() will 3674 // timeout after 10s. but for SFTP.php it's cumulative per packet 3675 $this->curTimeout = $this->timeout;
|
/dokuwiki/inc/HTTP/ |
H A D | HTTPClient.php | 25 public $timeout = 15; // read timeout (seconds) 257 $socket = @fsockopen($server, $port, $errno, $errstr, $this->timeout); 589 // check timeout 591 if ($time_used > $this->timeout) 600 // wait for stream ready or timeout (1sec) 632 // Does not return immediately so timeout and eof can be checked 637 if ($time_used > $this->timeout) 658 // wait for stream ready or timeout (1sec) 691 if ($time_used > $this->timeout) 24 public $timeout; // read timeout (seconds) global() variable in dokuwiki\\HTTP\\HTTPClient [all...] |
/dokuwiki/inc/Sitemap/ |
H A D | Mapper.php | 149 $http->timeout = 8;
|
/dokuwiki/lib/plugins/extension/helper/ |
H A D | repository.php | 79 $httpclient->timeout = 5;
|
H A D | extension.php | 913 $http->timeout = 25; //max. 25 sec
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
H A D | RSA.php | 534 * - 'partialkey': A partially computed key (if the execution time exceeded $timeout). 539 * @param int $timeout 542 function createKey($bits = 1024, $timeout = false, $partial = array()) argument 619 if ($timeout !== false) { 620 $timeout-= time() - $start; 622 if ($timeout <= 0) { 641 $primes[$i] = $generator->randomPrime($min, $finalMax, $timeout); 643 $primes[$i] = $generator->randomPrime($min, $max, $timeout); 646 if ($primes[$i] === false) { // if we've reached the timeout
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/ |
H A D | BigInteger.php | 3206 * If more than $timeout seconds have elapsed, give up and return false. 3210 * @param int $timeout 3215 function randomPrime($arg1, $arg2 = false, $timeout = false) argument 3283 if ($timeout !== false && time() - $start > $timeout) {
|