- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 37 for DFS (0.04 sec)
-
src/main/java/jcifs/smb1/smb1/Dfs.java
static final boolean strictView = Config.getBoolean("jcifs.smb1.smb.client.dfs.strictView", false); static final long TTL = Config.getLong("jcifs.smb1.smb.client.dfs.ttl", 300); static final boolean DISABLED = Config.getBoolean("jcifs.smb1.smb.client.dfs.disabled", false); protected static CacheEntry FALSE_ENTRY = new Dfs.CacheEntry(0L); protected CacheEntry _domains = null; /* aka trusted domains cache */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/DfsTest.java
DfsResolver dfs = context.getDfs(); String testDomain = getTestDomain(); assertTrue(dfs.isTrustedDomain(context, testDomain)); assertTrue(dfs.isTrustedDomain(context, testDomain.toLowerCase(Locale.ROOT))); String shortDom = getProperties().get(TestProperties.TEST_DOMAIN_SHORT); if ( shortDom != null ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 13.5K 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/SmbResourceLocator.java
*/ String getServer (); /** * If the path of this <code>SmbFile</code> falls within a DFS volume, * this method will return the referral path to which it maps. Otherwise * <code>null</code> is returned. * * @return URL to the DFS volume */ String getDfsPath (); /** * @return the transport port, if specified */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.vcNumber = 1; this.dfsDisabled = Config.getBoolean(p, "jcifs.smb.client.dfs.disabled", false); this.dfsTTL = Config.getLong(p, "jcifs.smb.client.dfs.ttl", 300); this.dfsStrictView = Config.getBoolean(p, "jcifs.smb.client.dfs.strictView", false); this.dfsConvertToFqdn = Config.getBoolean(p, "jcifs.smb.client.dfs.convertToFQDN", false);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
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/smb/DfsImpl.java
import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.DfsReferralData; import jcifs.DfsResolver; import jcifs.SmbTransport; import jcifs.internal.dfs.DfsReferralDataImpl; import jcifs.internal.dfs.DfsReferralDataInternal; /** * Caching DFS resolver implementation * * @internal */ public class DfsImpl implements DfsResolver {
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/DfsResolver.java
*/ SmbTransport getDc ( CIFSContext tf, String domain ) throws CIFSException; /** * Resolve the location of a DFS path * * @param domain * @param root * @param path * @param tf * @return the final referral for the given DFS path * @throws CIFSException * @throws jcifs.smb.SmbAuthException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
/** * {@inheritDoc} * * @see jcifs.internal.dfs.DfsReferralDataInternal#setCacheMap(java.util.Map) */ @Override public void setCacheMap ( Map<String, DfsReferralDataInternal> map ) { this.map = map; } /** * {@inheritDoc} * * @see jcifs.internal.dfs.DfsReferralDataInternal#replaceCache() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 11K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} checkStatus( request, response ); } public String toString() { return super.toString() + "[" + address + ":" + port + "]"; } /* DFS */ /* Split DFS path like \fs1.example.com\root5\link2\foo\bar.txt into at * most 3 components (not including the first index which is always empty): * result[0] = "" * result[1] = "fs1.example.com"
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0)