- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for hasReadCache (0.28 sec)
-
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java
// Check if lease is still valid LeaseManager.LeaseEntry leaseEntry = baseLeaseManager.getLease(entry.getLeaseKey()); if (leaseEntry == null || !leaseEntry.hasReadCache()) { // Lease lost, remove cache entry directoryCache.remove(directoryPath); return null; } } return entry; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 12.3K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
this.lastAccessTime = System.currentTimeMillis(); } public synchronized void incrementEpoch() { this.epoch++; } public boolean hasReadCache() { return (leaseState & Smb2LeaseState.SMB2_LEASE_READ_CACHING) != 0; } public boolean hasWriteCache() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
this.epoch++; } /** * Check if lease has read caching * * @return true if read caching is enabled */ public boolean hasReadCache() { return Smb2LeaseState.hasReadCaching(leaseState); } /** * Check if lease has write caching * * @return true if write caching is enabledRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
// Check if lease is still valid LeaseEntry leaseEntry = baseLeaseManager.getLease(entry.getLeaseKey()); if (leaseEntry == null || !leaseEntry.hasReadCache()) { // Lease lost, remove cache entry directoryCache.remove(directoryPath); return null; } } return entry; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0)