Home
last modified time | relevance | path

Searched refs:seconds (Results 1 – 5 of 5) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php23 public static function time_hms(int $seconds) argument
27 $hours = floor($seconds / 3600);
28 $remainder = $seconds % 3600;
34 $seconds = $remainder % 60;
38 if ($seconds < 10) {
39 $seconds = '0' . $seconds;
43 $time .= $seconds;
H A DSimplePie.php985 * @param int $seconds The feed content cache duration
988 public function set_cache_duration(int $seconds = 3600) argument
990 $this->cache_duration = $seconds;
997 * @param int $seconds The autodiscovered feed URL cache duration.
1000 public function set_autodiscovery_cache_duration(int $seconds = 604800) argument
1002 $this->autodiscovery_cache_duration = $seconds;
/dokuwiki/vendor/geshi/geshi/
H A DBUGS15 highlighted in just 6 seconds), but above about 25K things get a little slow... If
/dokuwiki/inc/lang/la/
H A Dlang.php258 $lang['seconds'] = 'a secundis %d';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php1363 private static function stream_select(&$read, &$write, &$except, $seconds, $microseconds = null) argument
1365 $remaining = $seconds + $microseconds / 1000000;
1368 $result = @stream_select($read, $write, $except, $seconds, $microseconds);
1373 $seconds = (int) ($remaining - floor($elapsed));
1374 $microseconds = (int) (1000000 * ($remaining - $seconds));