Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for directoryNotificationsEnabled (0.35 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

                } catch (NumberFormatException e) {
                    // Invalid value ignored
                }
            }
    
            value = props.getProperty("jcifs.smb.client.directoryNotificationsEnabled");
            if (value != null) {
                this.directoryNotificationsEnabled = Boolean.parseBoolean(value);
            }
    
            value = props.getProperty("jcifs.smb.client.maxDirectoryCacheEntries");
            if (value != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. docs/smb3-features/04-directory-leasing-design.md

    public static final String DIRECTORY_CACHE_TIMEOUT = "jcifs.smb.client.directoryCacheTimeout";
    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);
    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

         */
        protected long directoryCacheTimeout = 30000L;
        /**
         * Whether directory change notifications are enabled for cache invalidation
         */
        protected boolean directoryNotificationsEnabled = true;
        /**
         * Maximum number of cached directory entries
         */
        protected int maxDirectoryCacheEntries = 1000;
    
        // Multi-channel configuration fields
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         *
         * @return directory cache timeout in milliseconds
         */
        long getDirectoryCacheTimeout();
    
        /**
         * Property {@code jcifs.smb.client.directoryNotificationsEnabled} (boolean, default true)
         *
         * @return whether directory change notifications are enabled
         */
        boolean isDirectoryNotificationsEnabled();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top