- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getDirectoryCacheTimeout (0.11 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/config/DelegatingConfiguration.java
} @Override public String getDirectoryCacheScope() { return this.delegate.getDirectoryCacheScope(); } @Override public long getDirectoryCacheTimeout() { return this.delegate.getDirectoryCacheTimeout(); } @Override public boolean isDirectoryNotificationsEnabled() { return this.delegate.isDirectoryNotificationsEnabled(); } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24.1K bytes - Click Count (0) -
docs/smb3-features/04-directory-leasing-design.md
} public DirectoryCacheScope getDirectoryCacheScope() { String scope = getProperty(DIRECTORY_CACHE_SCOPE, "IMMEDIATE_CHILDREN"); return DirectoryCacheScope.valueOf(scope); } public long getDirectoryCacheTimeout() { return getLongProperty(DIRECTORY_CACHE_TIMEOUT, 30000); // 30 seconds } public boolean isDirectoryNotificationsEnabled() { return getBooleanProperty(DIRECTORY_NOTIFICATIONS_ENABLED, true); }
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
/** * Property {@code jcifs.smb.client.directoryCacheTimeout} (long, default 30000) * * @return directory cache timeout in milliseconds */ long getDirectoryCacheTimeout(); /** * Property {@code jcifs.smb.client.directoryNotificationsEnabled} (boolean, default true) * * @return whether directory change notifications are enabled */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} @Override public String getDirectoryCacheScope() { return this.directoryCacheScope; } @Override public long getDirectoryCacheTimeout() { return this.directoryCacheTimeout; } @Override public boolean isDirectoryNotificationsEnabled() { return this.directoryNotificationsEnabled; }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)