- Sort Score
- Result 10 results
- Languages All
Results 11 - 14 of 14 for metadataOnly (0.09 sec)
-
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheScope.java
IMMEDIATE_CHILDREN, /** * Cache entire subtree recursively (if supported by server) */ RECURSIVE_TREE, /** * Cache only file attributes but not content */ METADATA_ONLY, /** * Cache complete directory listing including all metadata */ FULL_ENUMERATION
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseContextTest.java
Smb2LeaseKey originalKey = new Smb2LeaseKey(); int originalLeaseState = DirectoryLeaseState.DIRECTORY_FULL; DirectoryCacheScope originalScope = DirectoryCacheScope.METADATA_ONLY; DirectoryLeaseContext originalContext = new DirectoryLeaseContext(originalKey, originalLeaseState, originalScope); originalContext.setMaxCacheAge(60000L);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 10.1K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
} ``` ### 3.2 Directory Cache Scopes ```java public enum DirectoryCacheScope { IMMEDIATE_CHILDREN, // Only direct children RECURSIVE_TREE, // Entire subtree (if supported) METADATA_ONLY, // File attributes but not content FULL_ENUMERATION // Complete directory listing } ``` ## 4. Data Structures ### 4.1 Directory Lease Context ```java package jcifs.internal.smb2.lease;
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/Configuration.java
/** * Property {@code jcifs.smb.client.directoryCacheScope} (String, default "IMMEDIATE_CHILDREN") * * @return directory cache scope (IMMEDIATE_CHILDREN, RECURSIVE_TREE, METADATA_ONLY, FULL_ENUMERATION) */ String getDirectoryCacheScope(); /** * Property {@code jcifs.smb.client.directoryCacheTimeout} (long, default 30000) *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0)