- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getDfsTtl (0.05 sec)
-
src/main/java/jcifs/smb/DfsImpl.java
try ( SmbTransport dc = getDc(tf, authDomain) ) { CacheEntry<Map<String, CacheEntry<DfsReferralDataInternal>>> entry = new CacheEntry<>(tf.getConfig().getDfsTtl() * 10L); DfsReferralData initial = null; @SuppressWarnings ( "resource" ) SmbTransportInternal trans = dc != null ? dc.unwrap(SmbTransportInternal.class) : null;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.dfsDisabled; } @Override public boolean isDfsStrictView () { return this.dfsStrictView; } @Override public long getDfsTtl () { return this.dfsTTL; } @Override public boolean isDfsConvertToFQDN () { return this.dfsConvertToFqdn; } @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.dfs.ttl</tt> (int, default 300) * * @return title to live, in seconds, for DFS cache entries */ long getDfsTtl (); /** * * Property <tt>jcifs.smb.client.dfs.strictView</tt> (boolean, default false) * * @return whether a authentication failure during DFS resolving will throw an exception */
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/SmbTransportImpl.java
rn = dfsResp.getNumReferrals(); } DfsReferralDataImpl cur = null; long expiration = System.currentTimeMillis() + ( ctx.getConfig().getDfsTtl() * 1000 ); Referral[] refs = dfsResp.getReferrals(); for ( int di = 0; di < rn; di++ ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)