Home
last modified time | relevance | path

Searched refs:lastModified (Results 1 – 25 of 4372) sorted by relevance

12345678910>>...175

/dports/www/limesurvey/limesurvey/framework/web/filters/
H A DCHttpCacheFilter.php26 public $lastModified; variable in CHttpCacheFilter
69 $lastModified=$this->getLastModifiedValue();
72 if($etag===false&&$lastModified===false)
89 if($this->checkLastModified($lastModified))
107 if($lastModified)
131 return $lastModified;
134 if($this->lastModified)
136 if(is_numeric($this->lastModified)&&$this->lastModified==(int)$this->lastModified)
137 return $this->lastModified;
138 elseif(($lastModified=strtotime($this->lastModified))===false)
[all …]
/dports/x11-fonts/stix-fonts/stixfonts-2.13/source/
H A DSTIXTwoMath-Regular.vfj9 "lastModified":"2021-02-01 19:55:42",
70 "lastModified":"2021-02-01 19:55:42",
82 "lastModified":"2021-02-01 19:55:42",
94 "lastModified":"2021-04-29 17:30:43",
145 "lastModified":"2021-02-01 19:55:42",
199 "lastModified":"2021-04-29 17:30:43",
242 "lastModified":"2021-02-01 19:55:42",
284 "lastModified":"2021-04-29 17:30:43",
332 "lastModified":"2021-02-01 19:55:42",
378 "lastModified":"2021-04-29 17:30:43",
[all …]
/dports/graphics/ospray-studio/ospray_studio-0.9.1/sg/tests/
H A Dtest_Node.cpp88 TimeStamp lastModified = node.lastModified(); variable
89 REQUIRE(lastModified > whenCreated);
106 TimeStamp initialModified = node.lastModified();
112 TimeStamp lastModified = node.lastModified(); variable
114 REQUIRE(lastModified > initialModified);
116 REQUIRE(lastModified > childrenModified);
211 TimeStamp initialModifiedParent = parent.lastModified();
212 TimeStamp initialModifiedChild = child.lastModified();
221 REQUIRE(parent.lastModified() > initialModifiedParent);
222 REQUIRE(parent.lastModified() > initialModifiedChild);
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/includes/Rest/
H A DConditionalHeaderUtil.php12 private $lastModified; variable in MediaWiki\\Rest\\ConditionalHeaderUtil
20 * @param string|int|null $lastModified The Last-Modified date in a format
29 public function setValidators( $eTag, $lastModified, $hasRepresentation ) { argument
32 if ( $lastModified === null ) {
33 $this->lastModified = null;
35 $this->lastModified = ConvertibleTimestamp::convert( TS_UNIX, $lastModified );
81 && ( $this->lastModified === null || $this->lastModified > $requestDate )
99 if ( $requestDate !== null && $this->lastModified !== null
100 && $this->lastModified <= $requestDate
124 if ( $this->lastModified !== null && !$response->hasHeader( 'Last-Modified' ) ) {
[all …]
/dports/www/mediawiki137/mediawiki-1.37.1/includes/Rest/
H A DConditionalHeaderUtil.php12 private $lastModified; variable in MediaWiki\\Rest\\ConditionalHeaderUtil
20 * @param string|int|null $lastModified The Last-Modified date in a format
29 public function setValidators( $eTag, $lastModified, $hasRepresentation ) { argument
32 if ( $lastModified === null ) {
33 $this->lastModified = null;
35 $this->lastModified = ConvertibleTimestamp::convert( TS_UNIX, $lastModified );
81 && ( $this->lastModified === null || $this->lastModified > $requestDate )
99 if ( $requestDate !== null && $this->lastModified !== null
100 && $this->lastModified <= $requestDate
124 if ( $this->lastModified !== null && !$response->hasHeader( 'Last-Modified' ) ) {
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/includes/Rest/
H A DConditionalHeaderUtil.php12 private $lastModified; variable in MediaWiki\\Rest\\ConditionalHeaderUtil
20 * @param string|int|null $lastModified The Last-Modified date in a format
29 public function setValidators( $eTag, $lastModified, $hasRepresentation ) { argument
32 if ( $lastModified === null ) {
33 $this->lastModified = null;
35 $this->lastModified = ConvertibleTimestamp::convert( TS_UNIX, $lastModified );
81 && ( $this->lastModified === null || $this->lastModified > $requestDate )
99 if ( $requestDate !== null && $this->lastModified !== null
100 && $this->lastModified <= $requestDate
124 if ( $this->lastModified !== null && !$response->hasHeader( 'Last-Modified' ) ) {
[all …]
/dports/www/pear-HTTP_Header/HTTP_Header-1.2.1/HTTP/Header/
H A DCache.php165 * @param int $lastModified Unix timestamp of last modification.
167 function isCached($lastModified = 0) argument
172 if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && !$lastModified) {
175 if (!$seconds = time() - $lastModified) {
202 * @param int $lastModified Unix timestamp of last modification.
204 function exitIfCached($lastModified = 0) argument
206 if ($this->isCached($lastModified)) {
231 * @param int $lastModified The unix timestamp of last modification.
233 function setLastModified($lastModified = null) argument
235 $this->setHeader('Last-Modified', $lastModified);
/dports/games/lwjgl/lwjgl-2df01dd/src/java/org/lwjgl/util/generator/
H A DGeneratorProcessor.java104 long lastModified = getDirectoryLastModified(bin_path, "/org/lwjgl/util/generator"); in getGeneratorLastModified() local
105lastModified = Math.max(lastModified, getDirectoryLastModified(bin_path, "/org/lwjgl/util/generato… in getGeneratorLastModified()
106lastModified = Math.max(lastModified, getDirectoryLastModified(bin_path, "/org/lwjgl/util/generato… in getGeneratorLastModified()
107lastModified = Math.max(lastModified, getDirectoryLastModified(bin_path, "/org/lwjgl/util/generato… in getGeneratorLastModified()
109 return lastModified; in getGeneratorLastModified()
128 long lastModified = 0; in getDirectoryLastModified() local
131 long lm = clazz.lastModified(); in getDirectoryLastModified()
132 if ( lastModified < lm ) { in getDirectoryLastModified()
133 lastModified = lm; in getDirectoryLastModified()
137 return lastModified; in getDirectoryLastModified()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/
H A DFileMetadata.java33 private final long lastModified; field in FileMetadata
50 public FileMetadata(String key, long length, long lastModified, in FileMetadata() argument
54 this.lastModified = lastModified; in FileMetadata()
74 public FileMetadata(String key, long lastModified, in FileMetadata() argument
79 this.lastModified = lastModified; in FileMetadata()
97 return lastModified; in getLastModified()
117 return "FileMetadata[" + key + ", " + length + ", " + lastModified + ", " in toString()
/dports/x11-fonts/py-babelfont/babelfont-2.0.2/tests/data/
H A DCastoro Roman.vfj9 "lastModified":"2020-08-27 23:39:19",
76 "lastModified":"2020-08-27 23:39:19",
89 "lastModified":"2020-08-28 17:37:19",
102 "lastModified":"2020-08-27 23:44:18",
116 "lastModified":"2020-08-28 17:30:45",
130 "lastModified":"2020-10-28 17:54:32",
192 "lastModified":"2020-08-27 23:39:19",
250 "lastModified":"2020-10-28 17:54:32",
298 "lastModified":"2020-08-27 23:39:19",
347 "lastModified":"2020-10-28 17:54:32",
[all …]
/dports/www/sabredav/sabre-dav-3.2.2/tests/Sabre/DAV/Mock/
H A DFile.php21 protected $lastModified; variable in Sabre\\DAV\\Mock\\File
29 * @param int $lastModified
32 function __construct($name, $contents, Collection $parent = null, $lastModified = -1) { argument
38 if ($lastModified === -1) {
39 $lastModified = time();
42 $this->lastModified = $lastModified;
159 return $this->lastModified;
/dports/audio/ampache/ampache-php74-5.0.0/vendor/sabre/dav/tests/Sabre/DAV/Mock/
H A DFile.php21 protected $lastModified; variable in Sabre\\DAV\\Mock\\File
29 * @param int $lastModified
32 function __construct($name, $contents, Collection $parent = null, $lastModified = -1) { argument
38 if ($lastModified === -1) {
39 $lastModified = time();
42 $this->lastModified = $lastModified;
159 return $this->lastModified;
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/sabre/dav/tests/Sabre/DAV/Mock/
H A DFile.php21 protected $lastModified; variable in Sabre\\DAV\\Mock\\File
29 * @param int $lastModified
32 function __construct($name, $contents, Collection $parent = null, $lastModified = -1) { argument
38 if ($lastModified === -1) {
39 $lastModified = time();
42 $this->lastModified = $lastModified;
159 return $this->lastModified;
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/sabre/sabre/dav/tests/Sabre/DAV/Mock/
H A DFile.php21 protected $lastModified; variable in Sabre\\DAV\\Mock\\File
29 * @param int $lastModified
32 function __construct($name, $contents, Collection $parent = null, $lastModified = -1) { argument
38 if ($lastModified === -1) {
39 $lastModified = time();
42 $this->lastModified = $lastModified;
159 return $this->lastModified;
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/sabre/dav/tests/Sabre/DAV/Mock/
H A DFile.php21 protected $lastModified; variable in Sabre\\DAV\\Mock\\File
29 * @param int $lastModified
32 function __construct($name, $contents, Collection $parent = null, $lastModified = -1) { argument
38 if ($lastModified === -1) {
39 $lastModified = time();
42 $this->lastModified = $lastModified;
159 return $this->lastModified;
/dports/graphics/tiled/tiled-1.7.2/src/libtiled/
H A Dimagecache.cpp74 QDateTime lastModified; member
84 QDateTime lastModified; member
92 LoadedImage::LoadedImage(QImage image, const QDateTime &lastModified) in LoadedImage() argument
94 , lastModified(lastModified) in LoadedImage()
100 , lastModified(cachedImage.lastModified) in LoadedPixmap()
117 bool old = found && it.value().lastModified < info.lastModified(); in loadImage()
129 it = sLoadedImages.insert(fileName, LoadedImage(image, info.lastModified())); in loadImage()
143 bool old = found && it.value().lastModified < QFileInfo(fileName).lastModified(); in loadPixmap()
163 result.lastModified = loadedImage.lastModified; in cutTilesImpl()
190 bool old = found && it.value().lastModified < QFileInfo(parameters.fileName).lastModified(); in cutTiles()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/nio/fs/
H A DPollingWatchService.java201 private long lastModified;
205 this.lastModified = lastModified;
213 long lastModified() {
214 return lastModified;
217 void update(long lastModified, int tickCount) {
218 this.lastModified = lastModified;
259 long lastModified =
337 long lastModified = 0L;
339 lastModified =
372 if (e.lastModified != lastModified) {
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/nio/fs/
H A DPollingWatchService.java201 private long lastModified;
205 this.lastModified = lastModified;
213 long lastModified() {
214 return lastModified;
217 void update(long lastModified, int tickCount) {
218 this.lastModified = lastModified;
259 long lastModified =
337 long lastModified = 0L;
339 lastModified =
372 if (e.lastModified != lastModified) {
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/main/java/org/mozilla/gecko/sync/repositories/uploaders/
H A DBatchMeta.java29 @Nullable private volatile Long lastModified; field in BatchMeta
35 lastModified = initialLastModified; in BatchMeta()
61 return lastModified; in getLastModified()
65 if (lastModified == null) { in setLastModified()
66 lastModified = newLastModified; in setLastModified()
70 if (!expectedToChange && !lastModified.equals(newLastModified)) { in setLastModified()
74 } else if (expectedToChange && lastModified.equals(newLastModified)) { in setLastModified()
79 lastModified = newLastModified; in setLastModified()
114 return new BatchMeta(lastModified, inBatchingMode); in nextBatchMeta()
/dports/www/nextcloud/nextcloud/3rdparty/microsoft/azure-storage-blob/src/Blob/Models/
H A DAppendBlockResult.php46 private $lastModified; variable in MicrosoftAzure\\Storage\\Blob\\Models\\AppendBlockResult
90 $lastModified = Utilities::tryGetValueInsensitive(
94 $lastModified = Utilities::rfc1123ToDateTime($lastModified);
96 $result->setLastModified($lastModified);
142 return $this->lastModified;
152 protected function setLastModified($lastModified) argument
154 $this->lastModified = $lastModified;
H A DGetContainerACLResult.php40 private $lastModified; variable in MicrosoftAzure\\Storage\\Blob\\Models\\GetContainerACLResult
60 \DateTime $lastModified,
65 $result->setLastModified($lastModified);
101 return $this->lastModified;
111 protected function setLastModified(\DateTime $lastModified) argument
113 $this->lastModified = $lastModified;
/dports/www/phpmyfaq/phpmyfaq/
H A Dsitemap.xml.php62 function buildSiteMapNode($location, $lastModified = null) argument
64 if (empty($lastModified)) {
65 $lastModified = Date::createIsoDate($_SERVER['REQUEST_TIME'], 'Y-m-d', false);
67 if (preg_match('/^[1|2][0-9]{3}-[0|1][0-9]-[0|1|2|3][0-9]$/', $lastModified)) {
68 $lastModified .= 'T'.date('H:i:sP');
69 } else if ( preg_match('/([\+|\-][0-9]{2})([0-9]{2})$/', $lastModified, $arrayFind) ) {
71 … $lastModified = str_replace($arrayFind[0], $arrayFind[1].':'.$arrayFind[2], $lastModified);
77 . '<lastmod>' . $lastModified . '</lastmod>'
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fonts/
H A DFontCache.java334 long lastModified = getLastModified(fontUri); in addFont() local
371 if (cff.lastModified() == lastModified) { in getFontInfos()
411 if (lastModified != failedLastModified) { in isFailedFont()
435 getFailedFontMap().put(embedUrl, lastModified); in registerFailedFont()
490 private long lastModified = -1; field in FontCache.CachedFontFile
494 public CachedFontFile(long lastModified) { in CachedFontFile() argument
495 setLastModified(lastModified); in CachedFontFile()
524 public long lastModified() { in lastModified() method in FontCache.CachedFontFile
525 return this.lastModified; in lastModified()
535 public void setLastModified(long lastModified) { in setLastModified() argument
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/nio/fs/
H A DPollingWatchService.java220 private long lastModified;
224 this.lastModified = lastModified;
232 long lastModified() {
233 return lastModified;
236 void update(long lastModified, int tickCount) {
237 this.lastModified = lastModified;
278 long lastModified =
356 long lastModified = 0L;
358 lastModified =
391 if (e.lastModified != lastModified) {
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/sun/nio/fs/
H A DPollingWatchService.java220 private long lastModified;
224 this.lastModified = lastModified;
232 long lastModified() {
233 return lastModified;
236 void update(long lastModified, int tickCount) {
237 this.lastModified = lastModified;
278 long lastModified =
356 long lastModified = 0L;
358 lastModified =
391 if (e.lastModified != lastModified) {
[all …]

12345678910>>...175