Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for directoryCacheTimeout (0.54 sec)

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

            if (value != null) {
                this.directoryCacheScope = value;
            }
    
            value = props.getProperty("jcifs.smb.client.directoryCacheTimeout");
            if (value != null) {
                try {
                    this.directoryCacheTimeout = Long.parseLong(value);
                } catch (NumberFormatException e) {
                    // Invalid value ignored
                }
            }
    
    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. src/main/java/jcifs/config/BaseConfiguration.java

         */
        protected String directoryCacheScope = "IMMEDIATE_CHILDREN";
        /**
         * Directory cache timeout in milliseconds
         */
        protected long directoryCacheTimeout = 30000L;
        /**
         * Whether directory change notifications are enabled for cache invalidation
         */
        protected boolean directoryNotificationsEnabled = true;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  3. docs/smb3-features/04-directory-leasing-design.md

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

         *
         * @return directory cache scope (IMMEDIATE_CHILDREN, RECURSIVE_TREE, METADATA_ONLY, FULL_ENUMERATION)
         */
        String getDirectoryCacheScope();
    
        /**
         * Property {@code jcifs.smb.client.directoryCacheTimeout} (long, default 30000)
         *
         * @return directory cache timeout in milliseconds
         */
        long getDirectoryCacheTimeout();
    
        /**
    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