- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 468 for share$ (0.04 sec)
-
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
/** * SMB command to close a find operation. */ public static final byte SMB_COM_FIND_CLOSE2 = (byte) 0x34; /** * SMB command to disconnect from a tree share. */ public static final byte SMB_COM_TREE_DISCONNECT = (byte) 0x71; /** * SMB command to negotiate protocol dialect. */ public static final byte SMB_COM_NEGOTIATE = (byte) 0x72;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
} s[_i].decode(_src); } } } } /** * DFS storage information structure containing server and share details */ public static class DfsStorageInfo extends NdrObject { /** * Default constructor for DfsStorageInfo */ public DfsStorageInfo() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
void testFullUNCPathProperties() { testBlock.setFullUNCPath("DOMAIN", "SERVER", "\\\\server\\share\\path"); assertEquals("DOMAIN", testBlock.getDomain()); assertEquals("SERVER", testBlock.getServer()); assertEquals("\\\\server\\share\\path", testBlock.getFullUNCPath()); } @Test @DisplayName("Test TID property")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationTest.java
} @Test void testToStringWithDifferentPaths() { // Test with various path formats String[] testPaths = { "simple.txt", "path/to/file.doc", "//server/share/file.txt", "folder\\windows\\style.txt", "" // empty path }; for (String path : testPaths) { trans2QueryPathInfo = new Trans2QueryPathInformation(config, path, TEST_INFO_LEVEL);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/JAASAuthenticatorTest.java
// Cached subject is copied and visible via getSubject() Subject copySubj = copy.getSubject(); assertNotNull(copySubj); assertSame(cachedOrig, copySubj, "Clone should share the cached Subject reference"); // Refreshing the original must not clear the clone's cached subject orig.refresh(); // Clone should retain its cached Subject
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/distributed/README.md
- MinIO distributed mode requires **fresh directories**. If required, the drives can be shared with other applications. You can do this by using a sub-directory exclusive to MinIO. For example, if you have mounted your volume under `/export`, pass `/export/data` as arguments to MinIO server.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
public void testRdmaLargeFileTransfer() throws Exception { CIFSContext context = getTestContext(); context.getConfig().setProperty("jcifs.smb.client.useRDMA", "true"); SmbFile file = new SmbFile("smb://server/share/largefile.dat", context); // Measure RDMA transfer performance byte[] data = new byte[10485760]; // 10MB Arrays.fill(data, (byte)0x42); long start = System.currentTimeMillis();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
docs/en/docs/tutorial/background-tasks.md
## Caveat { #caveat } If you need to perform heavy background computation and you don't necessarily need it to be run by the same process (for example, you don't need to share memory, variables, etc), you might benefit from using other bigger tools like <a href="https://docs.celeryq.dev" class="external-link" target="_blank">Celery</a>.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportInternalTest.java
void getDfsReferrals_happy() throws Exception { when(transport.getDfsReferrals(any(), any(), any(), any(), anyInt())).thenReturn(referral); String name = "\\\\server\\\\share\\\\path"; // UNC-like DFS path String host = "server.example"; String domain = "EXAMPLE"; int rn = 0; jcifs.DfsReferralData result = transport.getDfsReferrals(ctx, name, host, domain, rn);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.1K bytes - Viewed (0) -
README.md
efficiently makes your stuff load faster and saves bandwidth. OkHttp is an HTTP client that’s efficient by default: * HTTP/2 support allows all requests to the same host to share a socket. * Connection pooling reduces request latency (if HTTP/2 isn’t available). * Transparent GZIP shrinks download sizes. * Response caching avoids the network completely for repeat requests.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.8K bytes - Viewed (0)