Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getBooleanProperty (0.68 sec)

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

    public static final String MAX_DIRECTORY_CACHE_ENTRIES = "jcifs.smb.client.maxDirectoryCacheEntries";
    
    public boolean isUseDirectoryLeasing() {
        return getBooleanProperty(USE_DIRECTORY_LEASING, true);
    }
    
    public DirectoryCacheScope getDirectoryCacheScope() {
        String scope = getProperty(DIRECTORY_CACHE_SCOPE, "IMMEDIATE_CHILDREN");
        return DirectoryCacheScope.valueOf(scope);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. docs/smb3-features/02-persistent-handles-design.md

    public static final String HANDLE_STATE_DIR = "jcifs.smb.client.handleStateDirectory";
    
    public boolean isUseDurableHandles() {
        return getBooleanProperty(USE_DURABLE_HANDLES, true);
    }
    
    public boolean isUsePersistentHandles() {
        return getBooleanProperty(USE_PERSISTENT_HANDLES, false);
    }
    
    public long getDurableHandleTimeout() {
        return getLongProperty(DURABLE_HANDLE_TIMEOUT, 120000);  // 2 minutes
    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  3. docs/smb3-features/06-witness-protocol-design.md

    public static final String WITNESS_SERVICE_DISCOVERY = "jcifs.smb.client.witnessServiceDiscovery";
    
    public boolean isUseWitness() {
        return getBooleanProperty(USE_WITNESS, false);  // Disabled by default
    }
    
    public long getWitnessHeartbeatTimeout() {
        return getLongProperty(WITNESS_HEARTBEAT_TIMEOUT, 120000);  // 2 minutes
    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  4. docs/smb3-features/01-smb3-lease-design.md

        public static final String MAX_LEASES = "jcifs.smb.client.maxLeases";
        public static final String LEASE_VERSION = "jcifs.smb.client.leaseVersion";
        
        public boolean isUseLeases() {
            return getBooleanProperty(USE_LEASES, true);
        }
        
        public int getLeaseTimeout() {
            return getIntProperty(LEASE_TIMEOUT, 30000);  // 30 seconds default
        }
        
        public int getMaxLeases() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  5. docs/smb3-features/03-multi-channel-design.md

    public static final String CHANNEL_HEALTH_CHECK_INTERVAL = "jcifs.smb.client.channelHealthCheckInterval";
    
    public boolean isUseMultiChannel() {
        return getBooleanProperty(USE_MULTI_CHANNEL, true);
    }
    
    public int getMaxChannels() {
        return getIntProperty(MAX_CHANNELS, 4);
    }
    
    public int getChannelBindingPolicy() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top