- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getMaxRequestRetries (0.37 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.isStrictResourceLifecycle(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getMaxRequestRetries() */ @Override public int getMaxRequestRetries () { return this.delegate.getMaxRequestRetries(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getMachineId() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
String savedFullPath = rpath != null ? rpath.getFullUNCPath() : null; String fullPath = "\\" + loc.getServer() + "\\" + loc.getShare() + loc.getUNCPath(); int maxRetries = this.ctx.getConfig().getMaxRequestRetries(); for ( int retries = 1; retries <= maxRetries; retries++ ) { if ( rpath != null ) { rpath.setFullUNCPath(null, null, fullPath); } try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} @Override public boolean isIgnoreCopyToException () { return this.ignoreCopyToException; } @Override public int getMaxRequestRetries () { return this.maxRequestRetries; } @Override public boolean isTraceResourceUsage () { return this.traceResourceUsage; } @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
/** * * * Property <tt>jcifs.smb.client.maxRequestRetries</tt> (int, default 2) * * @return retry SMB requests on failure up to n times */ int getMaxRequestRetries (); /** * Property <tt>jcifs.smb.client.strictResourceLifecycle</tt> (bool, default false) *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)