/plugin/asciidocjs/node_modules/lodash/ |
D | debounce.js | 89 function invokeFunc(time) { argument 94 lastInvokeTime = time; 99 function leadingEdge(time) { argument 101 lastInvokeTime = time; 105 return leading ? invokeFunc(time) : result; 108 function remainingWait(time) { argument 109 var timeSinceLastCall = time - lastCallTime, 110 timeSinceLastInvoke = time - lastInvokeTime, 118 function shouldInvoke(time) { argument 119 var timeSinceLastCall = time - lastCallTime, [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/ |
D | JSON.php | 36 * @param float $time 38 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 42 $time, 56 * @param float $time 58 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 62 $time, 76 * @param float $time 78 …function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) argument 82 $time, 96 * @param float $time [all …]
|
D | TAP.php | 50 * @param float $time 52 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 62 * @param float $time 64 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 74 * @param float $time 76 …function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) argument 116 * @param float $time 118 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 128 * @param float $time 130 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument [all …]
|
D | JUnit.php | 119 * @param float $time 121 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 123 $this->doAddFault($test, $e, $time, 'error'); 132 * @param float $time 134 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 140 $this->doAddFault($test, $e, $time, 'warning'); 149 * @param float $time 151 …function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) argument 153 $this->doAddFault($test, $e, $time, 'failure'); 162 * @param float $time [all …]
|
D | TeamCity.php | 55 * @param float $time 57 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 74 * @param float $time 76 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 93 * @param float $time 95 …function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) argument 135 * @param float $time 137 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 147 * @param float $time 149 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/ |
D | TestListener.php | 21 * @param float $time 23 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time); argument 30 * @param float $time 43 * @param float $time 45 …unction addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time); argument 52 * @param float $time 54 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time); argument 61 * @param float $time 63 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time); argument 70 * @param float $time [all …]
|
D | BaseTestListener.php | 19 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
|
D | TestResult.php | 71 protected $time = 0; variable in PHPUnit_Framework_TestResult 216 * @param float $time 218 public function addError(PHPUnit_Framework_Test $test, $t, $time) argument 260 $listener->$notifyMethod($test, $t, $time); 264 $this->time += $time; 273 * @param float $time 275 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 287 $listener->addWarning($test, $e, $time); 291 $this->time += $time; 300 * @param float $time [all …]
|
/plugin/autologoff/ |
D | helper.php | 27 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; 46 if($time !== 0 && $time < 2) { 48 $time = 2; 52 io_saveFile($this->configfile, "$usergroup\t$time\n", true); 87 foreach($config as $usergroup => $time) { 89 if($time == 0) return 0; 90 if($time > $maxtime) $maxtime = $time;
|
D | action.php | 48 $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/ |
D | GetLastModified.php | 29 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/ |
D | GetLastModified.php | 29 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/ |
D | helper.php | 97 $time = time(); 105 fwrite($this->log, "$time\t$size\t$type\t$file\n"); 148 $time = $opts['useatime'] ? fileatime($base . $file) : filemtime($base . $file); 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']) { [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter/ |
D | XML.php | 64 * @param float $time 66 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 76 * @param float $time 78 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 87 * @param float $time 89 …function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) argument 99 * @param float $time 101 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 110 * @param float $time 112 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/ |
D | TicketListener.php | 31 * @param float $time 33 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 42 * @param float $time 44 …function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) argument 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 [all …]
|
/plugin/meta/ |
D | syntax.php | 124 list($date, $time) = explode(' ', trim($start), 2); 128 $time = $this->autocompleteTime($time); 129 return strtotime($date.' '.$time); 187 private function autocompleteTime($time, $end=false) argument 189 if (!preg_match('/^\d{2}:\d{2}:\d{2}$/', $time)) { 190 if (preg_match('/^\d{2}:\d{2}$/', $time)) { 191 return ($end) ? $time.':59' : $time.':00'; 192 } elseif (preg_match('/^\d{2}$/', $time)) { 193 return ($end) ? $time.':59:59': $time.':00:00'; 198 return $time;
|
/plugin/fkstimer/ |
D | script.js | 5 const addTimeElement = (time, text) => { argument 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/fedauth/classes/ |
D | fa_cookie.class.php | 52 $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/ |
D | TypedItem.php | 118 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));
|
D | Item.php | 125 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/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ |
D | ResultPrinter.php | 118 * @param float $time 120 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument 135 * @param float $time 137 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument 152 * @param float $time 154 …function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) argument 169 * @param float $time 171 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument 186 * @param float $time 188 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/ |
D | LastModifiedInfo.php | 25 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/php-timer/src/ |
D | Timer.php | 56 * @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/gtime/gtlib/util/ |
D | GTUtil.php | 231 * @param string $time ASN.1 formatted time 235 public static function decodeTime($time, $timezone = null) { argument 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) [all …]
|
/plugin/davcal/fullcalendar-3.10.5/ |
D | fullcalendar.print.less | 94 .fc-time-grid { 97 /* don't display the side axis at all ("all-day" and time cells) */ 103 .fc-time-grid hr { 109 .fc-time-grid .fc-content-skeleton { 113 .fc-time-grid .fc-content-skeleton table { 117 .fc-time-grid .fc-event-container { 123 .fc-time-grid .fc-event { 128 .fc-time-grid .fc-event.fc-not-end { 132 .fc-time-grid .fc-event.fc-not-end:after { 136 .fc-time-grid .fc-event.fc-not-start { [all …]
|