- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for ensureDFSResolved (0.11 sec)
-
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
} @Override public SmbSessionImpl getSession () { return this.treeConnection.getSession(); } @Override public void ensureDFSResolved () throws CIFSException { this.treeConnection.ensureDFSResolved(this.resourceLoc); } @Override public boolean hasCapability ( int cap ) throws SmbException { return this.treeConnection.hasCapability(cap); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
} else { throw sae; } } } SmbResourceLocator ensureDFSResolved ( SmbResourceLocatorImpl loc ) throws CIFSException { return ensureDFSResolved(loc, null); } SmbResourceLocator ensureDFSResolved ( SmbResourceLocatorImpl loc, RequestWithPath request ) throws CIFSException { if ( request instanceof SmbComClose )
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/SmbTreeHandleInternal.java
/** * */ void release (); /** * * @throws SmbException * @throws CIFSException */ void ensureDFSResolved () throws CIFSException; /** * @param cap * @return whether the capabiltiy is present * @throws CIFSException */ boolean hasCapability ( int cap ) throws CIFSException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
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 return this.treeHandle.acquire(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)