Home
last modified time | relevance | path

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

12345678910>>...59

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DJSON.php36 * @param float $time
42 $time,
62 $time,
82 $time,
96 * @param float $time
102 $time,
116 * @param float $time
122 $time,
136 * @param float $time
142 $time,
[all …]
H A DTAP.php50 * @param float $time
52 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument
62 * @param float $time
74 * @param float $time
116 * @param float $time
128 * @param float $time
130 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
148 * @param float $time
150 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
202 * @param float $time
[all …]
H A DJUnit.php119 * @param float $time
123 $this->doAddFault($test, $e, $time, 'error');
132 * @param float $time
140 $this->doAddFault($test, $e, $time, 'warning');
153 $this->doAddFault($test, $e, $time, 'failure');
162 * @param float $time
190 * @param float $time
218 * @param float $time
348 * @param float $time
365 sprintf('%F', $time)
[all …]
H A DTeamCity.php55 * @param float $time
74 * @param float $time
93 * @param float $time
135 * @param float $time
147 * @param float $time
151 $this->addError($test, $e, $time);
159 * @param float $time
167 $this->endTest($test, $time);
281 * @param float $time
285 parent::endTest($test, $time);
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestListener.php21 * @param float $time
23 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time); argument
30 * @param float $time
43 * @param float $time
52 * @param float $time
61 * @param float $time
63 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time); argument
70 * @param float $time
72 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time); argument
99 * @param float $time
[all …]
H A DBaseTestListener.php19 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument
23 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument
27 …function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) argument
31 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
35 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
39 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
55 public function endTest(PHPUnit_Framework_Test $test, $time) argument
H A DTestResult.php71 protected $time = 0; variable in PHPUnit_Framework_TestResult
264 $this->time += $time;
291 $this->time += $time;
344 $this->time += $time;
414 $this->time += $time;
814 $time
823 $time
862 $time
873 $time
884 $time
[all …]
/plugin/autologoff/
H A Dhelper.php27 foreach((array) confToHash($this->configfile) as $usergroup => $time) {
28 $conf[rawurldecode($usergroup)] = (int) $time;
40 public function add_entry($usergroup, $time) { argument
41 $time = (int) $time;
42 if($time !== 0 && $time < 2) {
44 $time = 2;
48 io_saveFile($this->configfile, "$usergroup\t$time\n", true);
83 foreach($config as $usergroup => $time) {
85 if($time == 0) return 0;
86 if($time > $maxtime) $maxtime = $time;
H A Daction.php48 $time = $this->helper->usertime();
49 if(!$time) return;
54 $idle_time = time() - $_SESSION[DOKU_COOKIE]['autologoff'];
55 if( $idle_time > $time * 60) {
67 $_SESSION[DOKU_COOKIE]['autologoff'] = time();
68 $JSINFO['autologoff'] = $time;
83 $time = $this->helper->usertime();
84 if(!$time){
92 $_SESSION[DOKU_COOKIE]['autologoff'] = time();
96 echo(($time * 60) - (time() - $_SESSION[DOKU_COOKIE]['autologoff']));
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DGetLastModified.php29 public $time; variable in Sabre\\DAV\\Xml\\Property\\GetLastModified
34 * @param int|DateTime $time
36 function __construct($time) { argument
38 if ($time instanceof DateTime) {
39 $this->time = clone $time;
41 $this->time = new DateTime('@' . $time);
45 $this->time->setTimezone(new DateTimeZone('UTC'));
56 return $this->time;
78 HTTP\Util::toHTTPDate($this->time)
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DGetLastModified.php29 public $time; variable in Sabre\\DAV\\Xml\\Property\\GetLastModified
34 * @param int|DateTime $time
36 function __construct($time) { argument
38 if ($time instanceof DateTime) {
39 $this->time = clone $time;
41 $this->time = new DateTime('@' . $time);
45 $this->time->setTimezone(new DateTimeZone('UTC'));
56 return $this->time;
78 HTTP\Util::toHTTPDate($this->time)
/plugin/cleanup/
H A Dhelper.php97 $time = time();
150 if(time() - $time > $opts['maxage']) {
164 $time = filemtime($base . $file);
165 if(time() - $time > $opts['maxage']) {
186 $time = filemtime($base . $file);
187 if(time() - $time > $opts['maxage']) {
215 $time = filemtime($base . $file);
216 if(time() - $time > $opts['maxage']) {
238 $time = filemtime($base . $file);
239 if(time() - $time > $opts['maxage']) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter/
H A DXML.php64 * @param float $time
66 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument
76 * @param float $time
87 * @param float $time
99 * @param float $time
110 * @param float $time
112 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
121 * @param float $time
159 * @param float $time
161 public function endTest(PHPUnit_Framework_Test $test, $time) argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DTicketListener.php31 * @param float $time
33 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument
42 * @param float $time
53 * @param float $time
55 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
64 * @param float $time
66 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
75 * @param float $time
77 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
126 * @param float $time
[all …]
/plugin/fkstimer/
H A Dscript.js5 const addTimeElement = (time, text) => {
6 return '<span class="time">' + time + '</span><span class="text">' + text + "</span>";
33 const time = (new Date(delta));
34 const hours = time.getHours();
35 const days = time.getDate() + (time.getMonth() * 31) - 1;
45 const min = time.getMinutes();
49 const sec = time.getSeconds();
51 const millisecond = Math.floor(time.getMilliseconds() / 100);
/plugin/meta/
H A Dsyntax.php127 list($date, $time) = explode(' ', trim($start), 2);
131 $time = $this->autocompleteTime($time);
132 return strtotime($date.' '.$time);
190 private function autocompleteTime($time, $end=false) argument
192 if (!preg_match('/^\d{2}:\d{2}:\d{2}$/', $time)) {
193 if (preg_match('/^\d{2}:\d{2}$/', $time)) {
194 return ($end) ? $time.':59' : $time.':00';
195 } elseif (preg_match('/^\d{2}$/', $time)) {
196 return ($end) ? $time.':59:59': $time.':00:00';
201 return $time;
/plugin/fedauth/classes/
H A Dfa_cookie.class.php52 $this->_updateCookie('', time() - 600000);
107 $time = $sticky ? (time() + 60 * 60 * 24 * 365) : 0; //one year
110 $this->_updateCookie($cookie, $time);
119 $_SESSION[DOKU_COOKIE]['fedauth']['time'] = time(); // current time
128 * @param int $time cookie expire timestamp
130 function _updateCookie($value, $time) { argument
135 …setcookie(FEDAUTH_COOKIE, $value, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true…
137 … setcookie(FEDAUTH_COOKIE, $value, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()));
/plugin/authgooglesheets/vendor/google/auth/src/Cache/
H A DTypedItem.php118 public function expiresAfter($time): static argument
120 if (is_int($time)) {
121 $this->expiration = $this->currentTime()->add(new \DateInterval("PT{$time}S"));
122 } elseif ($time instanceof \DateInterval) {
123 $this->expiration = $this->currentTime()->add($time);
124 } elseif ($time === null) {
125 $this->expiration = $time; variable in Google\\Auth\\Cache\\TypedItem
129 $error = sprintf($message, get_class($this), gettype($time));
H A DItem.php125 public function expiresAfter($time) argument
127 if (is_int($time)) {
128 $this->expiration = $this->currentTime()->add(new \DateInterval("PT{$time}S"));
129 } elseif ($time instanceof \DateInterval) {
130 $this->expiration = $this->currentTime()->add($time);
131 } elseif ($time === null) {
132 $this->expiration = $time;
136 $error = sprintf($message, get_class($this), gettype($time));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
H A DLastModifiedInfo.php25 public $time; variable in Google\\Service\\Dfareporting\\LastModifiedInfo
30 public function setTime($time) argument
32 $this->time = $time;
39 return $this->time;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DResultPrinter.php118 * @param float $time
120 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument
135 * @param float $time
152 * @param float $time
169 * @param float $time
186 * @param float $time
188 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
203 * @param float $time
205 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
283 * @param float $time
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-timer/src/
H A DTimer.php56 * @param float $time
59 public static function secondsToTimeString($time) argument
61 $ms = round($time * 1000);
65 $time = floor($ms / $value * 100.0) / 100.0;
67 return $time . ' ' . ($time == 1 ? $unit : $unit . 's');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Pubsub/
H A DSeekRequest.php29 public $time; variable in Google\\Service\\Pubsub\\SeekRequest
48 public function setTime($time) argument
50 $this->time = $time;
57 return $this->time;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/
H A DPoint.php25 public $time; variable in Google\\Service\\Dataflow\\Point
31 public function setTime($time) argument
33 $this->time = $time;
40 return $this->time;
/plugin/gtime/gtlib/util/
H A DGTUtil.php231 * @param string $time ASN.1 formatted time
248 if ($time == null) {
252 if (strlen($time) != 15) {
257 'year' => substr($time, 0, 4),
258 'month' => substr($time, 4, 2),
259 'day' => substr($time, 6, 2),
260 'hour' => substr($time, 8, 2),
261 'minute' => substr($time, 10, 2),
262 'second' => substr($time, 12, 2)
271 $time = mktime(
[all …]

12345678910>>...59