- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for maxDirectoryCacheEntries (0.13 seconds)
-
src/main/java/jcifs/config/BaseConfiguration.java
*/ protected boolean directoryNotificationsEnabled = true; /** * Maximum number of cached directory entries */ protected int maxDirectoryCacheEntries = 1000; // Multi-channel configuration fields /** * Whether to use SMB3 multi-channel support for improved performance and redundancy */ protected boolean useMultiChannel;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) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.directoryNotificationsEnabled = Boolean.parseBoolean(value); } value = props.getProperty("jcifs.smb.client.maxDirectoryCacheEntries"); if (value != null) { try { this.maxDirectoryCacheEntries = Integer.parseInt(value); } catch (NumberFormatException e) { // Invalid value ignored } }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 13.3K bytes - Click Count (0) -
docs/smb3-features/04-directory-leasing-design.md
public static final String DIRECTORY_NOTIFICATIONS_ENABLED = "jcifs.smb.client.directoryNotificationsEnabled"; public static final String MAX_DIRECTORY_CACHE_ENTRIES = "jcifs.smb.client.maxDirectoryCacheEntries"; public boolean isUseDirectoryLeasing() { return getBooleanProperty(USE_DIRECTORY_LEASING, true); } public DirectoryCacheScope getDirectoryCacheScope() {
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/Configuration.java
* * @return whether directory change notifications are enabled */ boolean isDirectoryNotificationsEnabled(); /** * Property {@code jcifs.smb.client.maxDirectoryCacheEntries} (int, default 1000) * * @return maximum number of directory cache entries */ int getMaxDirectoryCacheEntries(); /** * Get whether RDMA (SMB Direct) should be usedCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0)