- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 147 for roots (0.02 sec)
-
src/main/java/jcifs/smb/DfsImpl.java
} root = root.toLowerCase(); /* * domain-based DFS root shares to links for each */ final Map<String, CacheEntry<DfsReferralDataInternal>> roots = domains.get(domain); if (roots != null) { dr = getLinkReferral(tf, domain, root, path, now, roots); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnum.java
/** * MSRPC implementation for enumerating DFS roots. * This class provides functionality to enumerate Distributed File System (DFS) * roots on a server using the NetDFS RPC interface. */ public class MsrpcDfsRootEnum extends netdfs.NetrDfsEnumEx { /** * Creates a new DFS root enumeration request for the specified server. * * @param server the server name to enumerate DFS roots from */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcDfsRootEnum.java
/** * MSRPC implementation for enumerating DFS roots. * This class provides functionality to enumerate Distributed File System (DFS) * roots on a server using the NetDFS RPC interface. */ public class MsrpcDfsRootEnum extends netdfs.NetrDfsEnumEx { /** * Creates a new DFS root enumeration request for the specified server. * * @param server the server name to enumerate DFS roots from */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
if (roots != null) { SmbTransport trans = null; root = root.toLowerCase(); /* The link entries contain maps of referrals by path representing DFS links. * Note that paths are relative to the root like "\" and not "\example.com\root". */ CacheEntry links = (CacheEntry) roots.get(root);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
@Test @DisplayName("getEntries should return SmbShareInfo array for DFS roots") void testGetEntries_populatedArray() throws Exception { // Create populated DfsEnumArray200 netdfs.DfsEnumArray200 populatedArray = new netdfs.DfsEnumArray200(); populatedArray.count = 3; populatedArray.s = new netdfs.DfsInfo200[3]; // Create DFS root entries String[] rootNames = { "share1", "share2", "share3" };
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
} } return null; } static String[] list(final SmbFile root, final String wildcard, final int searchAttributes, final SmbFilenameFilter fnf, final SmbFileFilter ff) throws SmbException { try (CloseableIterator<SmbResource> it = doEnum(root, wildcard, searchAttributes, fnf == null ? null : (parent, name) -> { if (!(parent instanceof SmbFile)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} /* 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" * result[2] = "root5" * result[3] = "link2\foo\bar.txt" */ void dfsPathSplit(final String path, final String[] result) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
cmd/sts-handlers.go
_, err := certificate.Verify(x509.VerifyOptions{ KeyUsages: []x509.ExtKeyUsage{ x509.ExtKeyUsageClientAuth, }, Intermediates: intermediates, Roots: globalRootCAs, }) if err != nil { writeSTSErrorResponse(ctx, w, ErrSTSInvalidClientCertificate, err) return } } else {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 36.6K bytes - Viewed (0) -
cmd/test-utils_test.go
} // removeRoots - Cleans up initialized directories during tests. func removeRoots(roots []string) { for _, root := range roots { os.RemoveAll(root) } } // creates a bucket for the tests and returns the bucket name. // initializes the specified API endpoints for the tests. // initializes the root and returns its path. // return credentials.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 77K bytes - Viewed (0)