- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isStrictResourceLifecycle (0.16 sec)
-
src/main/java/jcifs/config/BaseConfiguration.java
} @Override public boolean isTraceResourceUsage () { return this.traceResourceUsage; } @Override public boolean isStrictResourceLifecycle () { return this.strictResourceLifecycle; } @Override public boolean isSendNTLMTargetName () { return this.sendNTLMTargetName; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* resources, however comes at the cost of having to properly release all SmbFile instances you no longer need. * * @return whether to use strict resource lifecycle */ boolean isStrictResourceLifecycle (); /** * This is solely intended for debugging * * @return whether to track the locations from which resources were created */ boolean isTraceResourceUsage ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
if ( this.treeHandle != null && this.transportContext.getConfig().isStrictResourceLifecycle() ) { this.treeHandle.release(); } this.treeHandle = this.treeConnection.connectWrapException(this.fileLocator); this.treeHandle.ensureDFSResolved(); if ( this.transportContext.getConfig().isStrictResourceLifecycle() ) { // one extra share to keep the tree alive
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)