Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getMaxDirectoryCacheEntries (0.18 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/smb3-features/04-directory-leasing-design.md

    }
    
    public boolean isDirectoryNotificationsEnabled() {
        return getBooleanProperty(DIRECTORY_NOTIFICATIONS_ENABLED, true);
    }
    
    public int getMaxDirectoryCacheEntries() {
        return getIntProperty(MAX_DIRECTORY_CACHE_ENTRIES, 1000);
    }
    ```
    
    ## 7. Performance Optimizations
    
    ### 7.1 Batch Directory Operations
    ```java
    public class BatchDirectoryOperations {
    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)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        }
    
        @Override
        public boolean isDirectoryNotificationsEnabled() {
            return this.directoryNotificationsEnabled;
        }
    
        @Override
        public int getMaxDirectoryCacheEntries() {
            return this.maxDirectoryCacheEntries;
        }
    
        @Override
        public boolean isUseRDMA() {
            return this.useRDMA;
        }
    
        @Override
    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)
Back to Top