- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for updateAccessTime (0.23 seconds)
-
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
} long elapsed = System.currentTimeMillis() - lastAccessTime; return elapsed > timeout; } /** * Update the last access time */ public void updateAccessTime() { this.lastAccessTime = System.currentTimeMillis(); } /** * Get the file path * @return the path */ public String getPath() { return path; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 5.9K bytes - Click Count (0) -
docs/smb3-features/02-persistent-handles-design.md
} long elapsed = System.currentTimeMillis() - lastAccessTime; return elapsed > timeout; } public void updateAccessTime() { this.lastAccessTime = System.currentTimeMillis(); } } public HandleGuid requestDurableHandle(String path, HandleType type,Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 31.6K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 13K bytes - Click Count (0) -
src/test/java/jcifs/tests/persistent/HandleInfoTest.java
try { Thread.sleep(10); } catch (InterruptedException e) { Thread.currentThread().interrupt(); } info.updateAccessTime(); assertTrue(info.getLastAccessTime() > originalAccessTime); } @Test public void testUpdateFileId() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 4.6K bytes - Click Count (0)