- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 93 for last_modified (2.71 sec)
-
src/main/java/jcifs/smb1/http/NetworkExplorer.java
return f1.isDirectory() ? -1 : 1; } if (f1.isDirectory()) { return f1name.compareToIgnoreCase(f2.getName()); } return f1.lastModified() > f2.lastModified() ? -1 : 1; } /** * Handles directory listing requests for SMB directories. * @param req the HTTP servlet request * @param resp the HTTP servlet response
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
fileBothDirectoryInfo.decode(buffer, 0, buffer.length); // Verify assertEquals(expectedCreationTime, fileBothDirectoryInfo.createTime()); } @Test @DisplayName("Test lastModified returns correct last write time") void testLastModified() throws SMBProtocolDecodingException { // Prepare test data byte[] buffer = createValidBuffer("file.txt", "FILE~1.TXT", true);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbShareInfo.java
public int getAttributes() { return SmbFile.ATTR_READONLY | SmbFile.ATTR_DIRECTORY; } @Override public long createTime() { return 0L; } @Override public long lastModified() { return 0L; } @Override public long length() { return 0L; } @Override public boolean equals(final Object obj) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java
return SmbFile.ATTR_READONLY | SmbFile.ATTR_DIRECTORY; } @Override public long createTime() { return 0L; } @Override public long lastModified() { return 0L; } @Override public long length() { return 0L; } @Override public String toString() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/log/admin_log.jsp
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* this.type = type == TYPE_WORKGROUP ? 0 : type; */ this.type = type; this.attributes = attributes; this.createTime = createTime; this.lastModified = lastModified; this.size = size; isExists = true; attrExpiration = sizeExpiration = System.currentTimeMillis() + attrExpirationPeriod; } private SmbComBlankResponse blank_resp() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* this.type = type == TYPE_WORKGROUP ? 0 : type; */ this.fileLocator.updateType(type); this.attributes = attributes; this.createTime = createTime; this.lastModified = lastModified; this.lastAccess = lastAccess; this.size = size; this.isExists = true; if (loadedAttributes) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
return SmbConstants.ATTR_READONLY | SmbConstants.ATTR_DIRECTORY; } @Override public long createTime() { return 0L; } @Override public long lastModified() { return 0L; } /** * {@inheritDoc} * * @see jcifs.smb.FileEntry#lastAccess() */ @Override public long lastAccess() { return 0L;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
public int getAttributes() { return this.extFileAttributes; } @Override public long createTime() { return this.creationTime; } @Override public long lastModified() { return this.lastWriteTime; } @Override public long lastAccess() { return this.lastAccessTime; } @Override public long length() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (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) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.3K bytes - Viewed (0)