- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getHandleStateDirectory (0.14 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getChannelHealthCheckInterval(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getHandleStateDirectory() */ @Override public String getHandleStateDirectory() { return this.delegate.getHandleStateDirectory(); } @Override public boolean isUseDirectoryLeasing() { return this.delegate.isUseDirectoryLeasing(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
return getLongProperty(DURABLE_HANDLE_TIMEOUT, 120000); // 2 minutes } public int getHandleReconnectRetries() { return getIntProperty(HANDLE_RECONNECT_RETRIES, 3); } public String getHandleStateDirectory() { return getProperty(HANDLE_STATE_DIR, System.getProperty("user.home") + "/.jcifs/handles"); } ``` ## 8. Testing Strategy ### 8.1 Unit Tests ```java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
int getChannelHealthCheckInterval(); /** * Property {@code jcifs.smb.client.handleStateDirectory} * * @return directory to store persistent handle state */ String getHandleStateDirectory(); /** * Property {@code jcifs.smb.client.useDirectoryLeasing} (boolean, default true) * * @return whether to use directory leasing for caching */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.durableHandleTimeout; } @Override public int getHandleReconnectRetries() { return this.handleReconnectRetries; } @Override public String getHandleStateDirectory() { return this.handleStateDirectory; } /** * {@inheritDoc} * * @see jcifs.Configuration#isUseMultiChannel() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)