- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 104 for last_modified (0.08 sec)
-
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
final Date lastModified = FessFunctions.parseDate(lastModifiedObj.toString()); if (lastModified != null) { return lastModified; } } else if (lastModifiedObj instanceof final String[] lastModifieds && lastModifieds.length > 0) { final Date lastModified = FessFunctions.parseDate(lastModifieds[0]); if (lastModified != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 23.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/QueryHelperTest.java
Set.of(), // "{\"timestamp\":{\"order\":\"desc\"}}{\"last_modified\":{\"order\":\"asc\"}}", // buildQuery("sort:timestamp.desc sort:last_modified")); assertQueryContext(query, Map.of(), // Set.of(), // "{\"timestamp\":{\"order\":\"desc\"}}{\"last_modified\":{\"order\":\"desc\"}}", // buildQuery("sort:timestamp.desc sort:last_modified.desc"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 11 08:26:36 UTC 2024 - 39.8K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. has_cache */ String INDEX_FIELD_has_cache = "index.field.has_cache"; /** The key of the configuration. e.g. last_modified */ String INDEX_FIELD_last_modified = "index.field.last_modified"; /** The key of the configuration. e.g. anchor */ String INDEX_FIELD_ANCHOR = "index.field.anchor"; /** The key of the configuration. e.g. segment */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
// last_modified final Date lastModified = responseData.getLastModified(); if (lastModified != null) { putResultDataBody(dataMap, fessConfig.getIndexFieldLastModified(), lastModified); // timestamp putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), lastModified); } else { // timestamp
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
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. */ public static final String LOCATION = "Location";
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 01 19:08:38 UTC 2024 - 35.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
final long timestamp = propertiesFile.lastModified(); if (timestamp <= lastModified) { return false; } return true; } public synchronized void load() { final Properties prop = new Properties(); try (final FileInputStream fis = new FileInputStream(propertiesFile)) { lastModified = propertiesFile.lastModified(); prop.load(fis);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 9.6K 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; } @Override public String toString() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Lmhosts.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.8K bytes - Viewed (0) -
cmd/api-response.go
// generates CopyObjectResponse from etag and lastModified time. func generateCopyObjectResponse(etag string, lastModified time.Time) CopyObjectResponse { return CopyObjectResponse{ ETag: "\"" + etag + "\"", LastModified: amztime.ISO8601Format(lastModified.UTC()), } } // generates CopyObjectPartResponse from etag and lastModified time.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 19:27:06 UTC 2024 - 33.4K bytes - Viewed (0)