- Sort Score
- Result 10 results
- Languages All
Results 11 - 17 of 17 for ShareName (0.14 sec)
-
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
* * @param contextHandle the context handle * @param shareName the share name * @return the registration ID */ private String generateRegistrationId(byte[] contextHandle, String shareName) { if (contextHandle == null || contextHandle.length == 0) { return "WITNESS-" + System.currentTimeMillis() + "-" + shareName.hashCode(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java
setConverter(response, converterValue); setNumEntries(response, 1); String shareName = "TEST"; String remark = "Test remark"; byte[] buffer = new byte[200]; int bufferIndex = 0; // Write share name byte[] nameBytes = shareName.getBytes(StandardCharsets.US_ASCII); System.arraycopy(nameBytes, 0, buffer, bufferIndex, Math.min(nameBytes.length, 13));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.java
* @param info the information container */ public ShareGetInfo(final String servername, final String sharename, final int level, final NdrObject info) { this.servername = servername; this.sharename = sharename; this.level = level; this.info = info; } @Override public void encode_in(final NdrBuffer _dst) throws NdrException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl
[in] unsigned long prefmaxlen, [out] unsigned long *totalentries, [in,out] unsigned long *resume_handle); [op(0x10)] int ShareGetInfo([in,string,unique] wchar_t *servername, [in,string] wchar_t *sharename, [in] int level, [out,switch_is(level)] ShareInfo *info); typedef struct { unsigned long platform_id; [string] wchar_t *name; } ServerInfo100; typedef [switch_type(int)] union {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl
[in] unsigned long prefmaxlen, [out] unsigned long *totalentries, [in,out] unsigned long *resume_handle); [op(0x10)] int ShareGetInfo([in,string,unique] wchar_t *servername, [in,string] wchar_t *sharename, [in] int level, [out,switch_is(level)] ShareInfo *info); typedef struct { unsigned long platform_id; [string] wchar_t *name; } ServerInfo100; typedef [switch_type(int)] union {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/CriticalPerformanceTest.java
try { String shareName = "share" + (threadId % 5); // Use 5 different shares // Test concurrent tree operations (should be thread-safe with CopyOnWriteArrayList) long opStart = System.nanoTime(); session.getSmbTree(shareName, null); long opEnd = System.nanoTime();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} } return null; } /** * Register for witness notifications for a share * * @param shareName the share name to monitor */ public void registerForWitnessNotifications(String shareName) { if (!witnessEnabled || witnessClient == null) { return; } try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0)