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.php58 public static function time_hms($seconds) argument
62 $hours = floor($seconds / 3600);
63 $remainder = $seconds % 3600;
69 $seconds = $remainder % 60;
73 if ($seconds < 10) {
74 $seconds = '0' . $seconds;
78 $time .= $seconds;
H A DSimplePie.php914 * @param int $seconds The feed content cache duration
916 public function set_cache_duration($seconds = 3600) argument
918 $this->cache_duration = (int) $seconds;
925 * @param int $seconds The autodiscovered feed URL cache duration.
927 public function set_autodiscovery_cache_duration($seconds = 604800) argument
929 $this->autodiscovery_cache_duration = (int) $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));