- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 644 for invalidation (0.13 seconds)
-
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();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 11.1K bytes - Click Count (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(); } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 2.1K bytes - Click Count (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 */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 4.5K bytes - Click Count (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 */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 4.3K bytes - Click Count (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; } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 9.4K bytes - Click Count (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;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 01:47:47 GMT 2025 - 12.3K bytes - Click Count (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();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 16.7K bytes - Click Count (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) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 36.2K bytes - Click Count (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;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0) -
tests/test_request_params/test_form/test_optional_str.py
@app.post( "/model-optional-validation-alias", operation_id="model_optional_validation_alias" ) def read_model_optional_validation_alias( p: Annotated[FormModelOptionalValidationAlias, Form()], ): return {"p": p.p} @pytest.mark.parametrize( "path", ["/optional-validation-alias", "/model-optional-validation-alias"], ) def test_optional_validation_alias_schema(path: str):
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 8.9K bytes - Click Count (0)