- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 127 for last_modified (0.07 sec)
-
android/guava/src/com/google/common/net/HttpHeaders.java
/** The HTTP {@code Expires} header field name. */ public static final String EXPIRES = "Expires"; /** The HTTP {@code Last-Modified} header field name. */ public static final String LAST_MODIFIED = "Last-Modified"; /** The HTTP {@code Link} header field name. */ public static final String LINK = "Link"; /** The HTTP {@code Location} header field name. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 27 20:37:16 UTC 2025 - 35.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/FileEntryTest.java
Arguments.of((LongGetter) FileEntry::createTime, Long.MAX_VALUE, "max createTime"), Arguments.of((LongGetter) FileEntry::lastModified, -2L, "negative lastModified"), Arguments.of((LongGetter) FileEntry::lastModified, 42L, "positive lastModified"), Arguments.of((LongGetter) FileEntry::lastAccess, 0L, "zero lastAccess"),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Lmhosts.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
final Properties prop = new Properties(); lastModified = propertiesFile.lastModified(); prop.load(inStream); properties = prop; } @Override public synchronized void load(final Reader reader) throws IOException { final Properties prop = new Properties(); lastModified = propertiesFile.lastModified(); prop.load(reader); properties = prop; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
* @param lastAccessTime last access time */ public FileInfo(String name, long size, long lastModified, boolean isDirectory, long attributes, long creationTime, long lastAccessTime) { this.name = name; this.size = size; this.lastModified = lastModified; this.isDirectory = isDirectory; this.attributes = attributes;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java
*/ @Override public Long getLastModified() { return lastModified; } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.UrlQueue#setLastModified(java.sql.Long) */ @Override public void setLastModified(final Long lastModified) { this.lastModified = lastModified; } @Override public float getWeight() {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java
final long timestamp = reloadableFile.lastModified(); if (timestamp != time) { synchronized (reloadableFile) { if (timestamp != lastModified) { createSynonymMap(true); return true; } } } } if (lastModified != time) { return true; }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun May 18 02:59:16 UTC 2025 - 6.7K bytes - Viewed (1) -
src/test/java/jcifs/SmbResourceTest.java
long currentTime = System.currentTimeMillis(); when(mockResource.lastModified()).thenReturn(currentTime); when(mockResource.lastAccess()).thenReturn(currentTime - 1000); when(mockResource.createTime()).thenReturn(currentTime - 2000); // When long lastModified = mockResource.lastModified(); long lastAccess = mockResource.lastAccess();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 35K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
if (synonymLoader.isReloadable()) { this.synonymLoader = synonymLoader; this.lastModified = synonymLoader.getLastModified(); } else { this.synonymLoader = null; this.lastModified = System.currentTimeMillis(); } synonymMap = synonymLoader.getSynonymMap();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 17K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java
this.contentLength = contentLength; } @Override public Long getLastModified() { return lastModified; } @Override public void setLastModified(final Long lastModified) { this.lastModified = lastModified; } /** * Returns a string representation of this object. * @return A string representation. */ @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9K bytes - Viewed (0)