- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 171 for SHARE (0.02 sec)
-
src/test/java/jcifs/tests/FileLocationTest.java
private String server; private String share; private String path; private int pathConsumed; /** * */ public TestDfsReferral ( String server, String share, String path, int pathConsumed ) { this.server = server; this.share = share; this.path = path; this.pathConsumed = pathConsumed;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 13:16:07 UTC 2020 - 23K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
private final List<StackTraceElement[]> releases; private DfsReferralData treeReferral; SmbTreeImpl ( SmbSessionImpl session, String share, String service ) { this.session = session.acquire(); this.share = share.toUpperCase(); if ( service != null && !service.startsWith("??") ) { this.service = service; } this.service0 = this.service;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTree.java
*/ int connectionState; int tid; String share; String service = "?????"; String service0; SmbSession session; boolean inDfs, inDomainDfs; int tree_num; // used by SmbFile.isOpen SmbTree( SmbSession session, String share, String service ) { this.session = session; this.share = share.toUpperCase(); if( service != null && service.startsWith( "??" ) == false ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
return "smb1://"; } /** * Retrieves the share associated with this SMB resource. In * the case of <code>smb1://</code>, <code>smb1://workgroup/</code>, * and <code>smb1://server/</code> URLs which do not specify a share, * <code>null</code> will be returned. * * @return The share component or <code>null</code> if there is no share */ public String getShare() { return share;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
SmbTreeImpl uct = smbSession.getSmbTree(share, null).unwrap(SmbTreeImpl.class); SmbTreeImpl ct = connectTree(loc, host, share, trans, uct, dr) ) { if ( dr != null ) { ct.setTreeReferral(dr); if ( dr != start ) {
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/internal/dfs/DfsReferralDataImpl.java
private static final Logger log = LoggerFactory.getLogger(DfsReferralDataImpl.class); private int pathConsumed; private long ttl; private String server; // Server private String share; // Share private String link; private String path; // Path relative to tree from which this referral was thrown private long expiration; private int rflags; private boolean resolveHashes;
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/smb/SmbSessionInternal.java
*/ SmbTransport getTransport (); /** * Connect to the logon share * * @throws SmbException */ void treeConnectLogon () throws SmbException; /** * @param share * @param service * @return tree instance */ SmbTree getSmbTree ( String share, String service ); /** * Initiate reauthentication *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/DfsReferral.java
package jcifs.smb1.smb1; import java.util.Map; public class DfsReferral extends SmbException { public int pathConsumed; public long ttl; public String server; // Server public String share; // Share public String link; public String path; // Path relative to tree from which this referral was thrown public boolean resolveHashes; public long expiration; DfsReferral next; Map map;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/TestProperties.java
/** * */ private TestProperties () {} static final String TEST_SHARE_URL_MAIN = "test.share.main.url"; static final String TEST_SHARE_URL_DFSROOT = "test.share.dfsroot.url"; static final String TEST_SHARE_MAIN = "test.share.main"; static final String TEST_SHARE_GUEST = "test.share.guest"; static final String TEST_USER_NAME = "test.user.name";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Feb 29 16:38:58 UTC 2020 - 2.3K bytes - Viewed (0)