- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getCacheScope (0.62 sec)
-
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseContextTest.java
assertEquals(key, context.getLeaseKey()); assertEquals(leaseState, context.getLeaseState()); assertEquals(scope, context.getCacheScope()); assertEquals(30000L, context.getMaxCacheAge()); assertTrue(context.isNotificationEnabled()); assertEquals(0, context.getNotificationFilter()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java
decodedContext.decode(buffer, 0, buffer.length); // Verify roundtrip integrity assertEquals(context.getLeaseState(), decodedContext.getLeaseState()); assertEquals(context.getCacheScope(), decodedContext.getCacheScope()); assertEquals(context.getMaxCacheAge(), decodedContext.getMaxCacheAge()); assertEquals(context.isNotificationEnabled(), decodedContext.isNotificationEnabled());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
this.leaseState = leaseState; } /** * Gets the cache scope for directory enumeration caching * @return the cache scope */ public DirectoryCacheScope getCacheScope() { return cacheScope; } /** * Sets the cache scope for directory enumeration caching * @param cacheScope the cache scope to set */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 9.4K bytes - Viewed (0)