- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 46 for last_modified (0.39 seconds)
-
src/main/java/org/codelibs/fess/storage/S3StorageClient.java
final String fileName = getName(objectKey); final ZonedDateTime lastModified = s3Object.lastModified() != null ? s3Object.lastModified().atZone(java.time.ZoneId.systemDefault()) : null; items.add(new StorageItem(fileName, prefix, false, s3Object.size(), lastModified, encodeId(objectKey))); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 10.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/storage/StorageItemTest.java
final boolean directory = false; final long size = 1024L; final ZonedDateTime lastModified = ZonedDateTime.of(2025, 1, 15, 10, 30, 0, 0, ZoneId.systemDefault()); final String encodedId = "dGVzdC1maWxlLnR4dA=="; final StorageItem item = new StorageItem(name, path, directory, size, lastModified, encodedId); assertEquals(name, item.getName()); assertEquals(path, item.getPath());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java
} /** * Gets a list of log file items for display in the admin interface. * * @return list of maps containing log file information (id, name, lastModified, size) */ public static List<Map<String, Object>> getLogFileItems() { final SystemHelper systemHelper = ComponentUtil.getSystemHelper();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 23 23:57:26 GMT 2026 - 5.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/StorageItem.java
*/ public StorageItem(final String name, final String path, final boolean directory, final long size, final ZonedDateTime lastModified, final String encodedId) { this.name = name; this.path = path; this.directory = directory; this.size = size; this.lastModified = lastModified; this.encodedId = encodedId; } /** * Returns the name of the item. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
return true; } final Date lastModified = DocumentUtil.getValue(document, fessConfig.getIndexFieldLastModified(), Date.class); if (lastModified == null) { return true; } urlQueue.setLastModified(lastModified.getTime()); log(logHelper, LogType.CHECK_LAST_MODIFIED, crawlerContext, urlQueue);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 19.5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/log/admin_log.jsp
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 4.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
} final ZonedDateTime lastModified = blob.getUpdateTimeOffsetDateTime() != null ? blob.getUpdateTimeOffsetDateTime().toZonedDateTime() : null; final StorageItem item = new StorageItem(name, prefix, isDirectory, isDirectory ? 0 : blob.getSize(), isDirectory ? null : lastModified, encodeId(blobName)); if (isDirectory) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 10.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java
return 0.0f; } @Override public void setCreateTime(Long createTime) { } @Override public void setLastModified(Long lastModified) { } @Override public void setDepth(Integer depth) { } @Override public void setParentUrl(String parentUrl) { }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.3K bytes - Click Count (0) -
src/main/webapp/js/admin/jquery-3.7.1.min.js
(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(At.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(It,"$1"),o=(At.test(f)?"&":"?")+"_="+jt.guid+++o),v.url=f+o),v.ifModified&&(ce.lastModified[f]&&T.setRequestHeader("If-Modified-Since",ce.lastModified[f]),ce.etag[f]&&T.setRequestHeader("If-None-Match",ce.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:07:52 GMT 2024 - 85.5K bytes - Click Count (1) -
src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp
</td> <td>${f:h(data.size)}</td> <td>${fe:formatDate(data.lastModified, 'yyyy-MM-dd HH:mm:ss')}</td> </c:if> <c:if test="${data.directory.booleanValue()}">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 20.7K bytes - Click Count (0)