Home
last modified time | relevance | path

Searched refs:timestamp (Results 126 – 150 of 262) sorted by path

1234567891011

/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md639 - `ttl` and `timestamp` logic: setters and getters in documents and mapping
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DUtil.php183 $timestamp = $date;
185 $timestamp = \strtotime($date);
188 return \date('Y-m-d\TH:i:s\Z', $timestamp);
/plugin/emoji/script/
H A Djquery.textcomplete.js948 var timeout, args, context, timestamp, result;
950 var last = now() - timestamp;
963 timestamp = now();
/plugin/farmsync/_test/mock/
H A DFarmSyncUtil.php38 public function replaceRemoteFile($remoteFile, $content, $timestamp = 0) { argument
42 'timestamp' => $timestamp
55 public function saveRemotePage($animal, $page, $content, $timestamp = false) { argument
60 'timestamp' => $timestamp
64 public function setPagemtime($animal, $page, $timestamp) { argument
65 $this->remoteData[$animal][$page]['mtime'] = $timestamp;
77 public function readRemotePage($animal, $page, $clean = true, $timestamp = null) { argument
78 …remoteData[$animal][$page]['content'] : parent::readRemotePage($animal, $page, $clean, $timestamp);
/plugin/farmsync/meta/
H A DFarmSyncUtil.php103 * @param int $timestamp
107 if ($timestamp) touch($remoteFile, $timestamp);
116 * @param int $timestamp
121 if (!$timestamp) $timestamp = time();
143 …RemoteFile($this->getRemoteMediaFilename($target, $media, $timestamp), $sourceContent, $timestamp);
163 * @param int $timestamp revision
175 * @param int $timestamp
186 $mediaFN = mediaFN($media, $timestamp, $clean);
209 $FN = wikiFN($document, $timestamp, $clean);
386 private function isValidTimeStamp($timestamp) { argument
[all …]
/plugin/fckg/syntax/
H A Ddwplugin.php449 $timestamp = time() + (5000*24*60*60);
452 $timestamp = $meta_data ['persistent']['dwplugin'];
455 $timestamp = $meta_data ['dwplugin'];
460 if($timestamp < $tmp) {
/plugin/fedauth/Auth/OpenID/
H A DConsumer.php1272 list($timestamp, $salt) = $parts;
1274 if (!$this->store->useNonce($server_url, $timestamp, $salt)) {
H A DDumbStore.php86 function useNonce($server_url, $timestamp, $salt) argument
H A DFileStore.php131 $timestamp = $parts[0];
132 $timestamp = intval($timestamp, 16);
133 if (abs($timestamp - $now) > $Auth_OpenID_SKEW) {
360 function useNonce($server_url, $timestamp, $salt) argument
369 if ( abs($timestamp - time()) > $Auth_OpenID_SKEW ) {
385 $filename = sprintf('%08x-%s-%s-%s-%s', $timestamp, $proto,
H A DInterface.php183 function useNonce($server_url, $timestamp, $salt) argument
H A DMDB2Store.php370 function useNonce($server_url, $timestamp, $salt) argument
374 if (abs($timestamp - time()) > $Auth_OpenID_SKEW ) {
379 "timestamp" => $timestamp,
H A DMemcachedStore.php165 function useNonce($server_url, $timestamp, $salt) argument
170 if (abs($timestamp - time()) > $Auth_OpenID_SKEW) {
H A DNonce.php49 $timestamp =
52 if ($timestamp === false || $timestamp < 0) {
56 return array($timestamp, $uniquifier);
H A DSQLStore.php454 function _add_nonce($server_url, $timestamp, $salt) argument
458 $timestamp,
468 function useNonce($server_url, $timestamp, $salt) argument
472 if ( abs($timestamp - time()) > $Auth_OpenID_SKEW ) {
476 return $this->_add_nonce($server_url, $timestamp, $salt);
H A DSQLiteStore.php58 function _add_nonce($server_url, $timestamp, $salt) argument
67 return parent::_add_nonce('x' . $server_url, $timestamp, $salt);
/plugin/findologicxmlexport/vendor/doctrine/annotations/
H A DCHANGELOG.md78 - [105: Return single max timestamp](https://github.com/doctrine/annotations/pull/105)
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DSplFileInfo.php106 $timestamp = $this->realdom->boundinteger(
107 $this->realdom->timestamp('yesterday'),
108 $this->realdom->timestamp('tomorrow')
110 $atime = $this->sample($timestamp),
111 $ctime = $this->sample($timestamp),
112 $mtime = $this->sample($timestamp),
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DClassHierarchyMetadata.php34 public function isFresh(int $timestamp): bool argument
37 if (!$metadata->isFresh($timestamp)) {
H A DClassMetadata.php58 public function isFresh(?int $timestamp = null): bool argument
60 if (null === $timestamp) {
61 $timestamp = $this->createdAt;
69 if ($timestamp < filemtime($filepath)) {
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md278 - Fixed issue where timezone is lost when creating DateTime from unix timestamp [\#835](https://git…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DTimestamp.php14 private $timestamp; variable in JMS\\Serializer\\Tests\\Fixtures\\Timestamp
16 public function __construct($timestamp) argument
18 $this->timestamp = $timestamp;
23 return $this->timestamp;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DDateHandlerTest.php99 $timestamp = (string) time();
103 $expectedDateTime = \DateTime::createFromFormat('U', $timestamp);
106 $actualDateTime = $this->handler->deserializeDateTimeFromJson($visitor, $timestamp, $type);
118 $timestamp = (string) time();
122 $expectedDateTime = \DateTime::createFromFormat('U', $timestamp);
125 …$actualDateTime = $this->handler->deserializeDateTimeImmutableFromJson($visitor, $timestamp, $type…
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsSpecificationExamples.yml82 [yaml.timestamp('2001-07-02'),
83 yaml.timestamp('2001-08-12'),
84 yaml.timestamp('2001-08-14')],
86 [yaml.timestamp('2001-07-23')]
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG679 * added negative timestamp support to the date filter
767 * fixed date filter when using a timestamp
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst926 public function dateFilter($timestamp, $format = 'F j, Y H:i')
941 $twig->addFilter(new \Twig\TwigFilter('date', function ($timestamp, $format = 'F j, Y H:i') {

1234567891011