- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 49 for invalidDate (0.17 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaMemoryRegion.java
* * @return true if valid, false if invalidated */ public boolean isValid() { return valid; } /** * Invalidate this memory region * * After invalidation, the region cannot be used for RDMA operations. */ public abstract void invalidate(); /** * Generate local key for this memory region *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/AbstractCacheTest.java
List<Object> invalidated = new ArrayList<>(); Cache<Integer, Integer> cache = new AbstractCache<Integer, Integer>() { @Override public Integer getIfPresent(Object key) { throw new UnsupportedOperationException(); } @Override public void invalidate(Object key) { invalidated.add(key); } };
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6.3K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
// Invalidate affected cache entries DirectoryCacheEntry entry = leaseManager.getCacheEntry(directoryPath); if (entry != null) { entry.removeChild(fileName); // If too many inconsistencies, invalidate entire cache if (entry.getInconsistencyCount() > 5) { entry.invalidate(); } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniMemoryRegion.java
} @Override public void invalidate() { if (valid && memoryRegister != null) { try { // In real implementation, this would deregister the memory: // memoryRegister.deregisterMemory(); log.debug("DiSNI memory region invalidated"); } catch (Exception e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
entry.updateChild("file1.txt", 1024L, 1000L, false, 0x20, 500L, 800L); entry.updateChild("file2.txt", 2048L, 2000L, false, 0x20, 600L, 900L); entry.markComplete(); // Test FILE_ADDED - should invalidate cache directoryLeaseManager.handleDirectoryChange(directoryPath, "file3.txt", DirectoryChangeNotifier.DirectoryChangeType.FILE_ADDED); assertFalse(entry.isComplete()); // Re-setup for next test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
if (file != null) { try { // Invalidate any cached read data // This would typically clear file's internal read buffers // For now, we log the action as the actual implementation // depends on SmbFile's internal caching mechanism log.info("Invalidated read cache for: {}", path); } catch (Exception e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
} /** * Invalidate this memory region */ public abstract void invalidate(); protected abstract int generateLocalKey(); protected abstract int generateRemoteKey(); protected abstract long getBufferAddress(ByteBuffer buffer); @Override public void close() { invalidate(); valid = false; } } ```
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 12.3K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
invalidateSet.forEach(s -> excludeFilterCache.invalidate(s)); } /** * Deletes all URL filters for the specified session. * * @param sessionId The session ID. */ @Override public void delete(final String sessionId) { deleteBySessionId(sessionId); includeFilterCache.invalidate(sessionId); excludeFilterCache.invalidate(sessionId); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
this.currentHash = newHash.clone(); } } } public boolean isValid() { return isValid; } public void invalidate() { this.isValid = false; // Clear sensitive data synchronized (hashLock) { Arrays.fill(currentHash, (byte) 0); } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0)