- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 435 for invalidation (4.75 sec)
-
src/test/java/jcifs/smb/PreauthIntegrityServiceTest.java
preauthService.updatePreauthHash("non-existent", "test".getBytes()); }); } @Test @DisplayName("Test context invalidation") public void testContextInvalidation() throws CIFSException { String sessionId = "test-session-invalidation"; byte[] salt = preauthService.generatePreauthSalt();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpMemoryRegion.java
*/ public TcpMemoryRegion(ByteBuffer buffer, EnumSet<RdmaAccess> access) { super(buffer, access); } @Override public void invalidate() { // No real invalidation needed for TCP valid = false; } @Override protected int generateLocalKey() { return keyGenerator.getAndIncrement(); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
*/ public static final int SMB2_CHANNEL_RDMA_V1 = 0x00000001; /** * SMB2 Channel constant for RDMA V1 invalidate * Used to indicate RDMA with invalidation */ public static final int SMB2_CHANNEL_RDMA_V1_INVALIDATE = 0x00000002; /** * SMB2 RDMA Transform Capabilities negotiate context ID */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.5K bytes - Viewed (0) -
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 * * @return local key */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.3K bytes - Viewed (0) -
docs/changelogs/changelog_1x.md
X-Android-Received-Millis is now OkHttp-Received-Millis X-Android-Response-Source is now OkHttp-Response-Source X-Android-Selected-Transport is now OkHttp-Selected-Transport ``` * Improve cache invalidation for POST-like requests. * Bring MockWebServer into OkHttp and teach it SPDY. ## Version 1.1.1 _2013-06-23_ * Fix: ClassCastException when caching responses that were redirected from
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
*/ public void setMaxCacheAge(long maxCacheAge) { this.maxCacheAge = maxCacheAge; } /** * Checks if directory change notifications are enabled for cache invalidation * @return true if change notifications are enabled */ public boolean isNotificationEnabled() { return notificationEnabled; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java
case FILE_MODIFIED: // Remove from cache to force refresh entry.removeChild(childName); break; case DIRECTORY_RENAMED: // Full invalidation needed entry.invalidate(); break; case ATTRIBUTES_CHANGED: // Remove from cache to force refresh entry.removeChild(childName); break;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
when(fh.acquire()).thenReturn(fh); when(fh.isValid()).thenReturn(true, false); // first true, then false handle.ensureOpen(); assertTrue(handle.isOpen()); // Simulate invalidation assertFalse(handle.isOpen(), "Becomes not open when underlying handle invalid"); // After close, report stale handle.close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 16.7K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
// Remove from cache to force refresh entry.removeChild(childName); break; case DIRECTORY_RENAMED: // Full invalidation needed entry.invalidate(); break; } } public void handleDirectoryLeaseBreak(Smb2LeaseKey leaseKey, int newState) {
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/config/BaseConfiguration.java
/** * Directory cache timeout in milliseconds */ protected long directoryCacheTimeout = 30000L; /** * Whether directory change notifications are enabled for cache invalidation */ protected boolean directoryNotificationsEnabled = true; /** * Maximum number of cached directory entries */ protected int maxDirectoryCacheEntries = 1000;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)