- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 31 for newName (0.36 sec)
-
src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java
/** * Sets the network name (server name). * * @param netName the network name */ public void setNetName(String netName) { this.netName = netName; } /** * Gets the network name. * * @return the network name */ public String getNetName() { return netName; } /** * Sets the share name to monitor. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareEnumTest.java
srvsvc.ShareInfo1 shareInfo1 = new srvsvc.ShareInfo1(); shareInfo1.netname = "Share1"; shareInfo1.type = 0; shareInfo1.remark = "Remark for Share1"; srvsvc.ShareInfo1 shareInfo2 = new srvsvc.ShareInfo1(); shareInfo2.netname = "Share2"; shareInfo2.type = 1; shareInfo2.remark = "Remark for Share2";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcShareEnum.java
*/ public class MsrpcShareEnum extends srvsvc.ShareEnumAll { class MsrpcShareInfo1 extends SmbShareInfo { MsrpcShareInfo1(final srvsvc.ShareInfo1 info1) { this.netName = info1.netname; this.type = info1.type; this.remark = info1.remark; } } /** * Creates a new request to enumerate shares on a server. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareEnum.java
*/ public class MsrpcShareEnum extends srvsvc.ShareEnumAll { class MsrpcShareInfo1 extends SmbShareInfo { MsrpcShareInfo1(final srvsvc.ShareInfo1 info1) { this.netName = info1.netname; this.type = info1.type; this.remark = info1.remark; } } /** * Creates a new request to enumerate shares on a server. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl
version(3.0) ] interface srvsvc { import "../rpc.idl"; typedef struct { [string] wchar_t *netname; } ShareInfo0; typedef struct { int count; [size_is(count)] ShareInfo0 *array; } ShareInfoCtr0; typedef struct { [string] wchar_t *netname; int type; [string] wchar_t *remark; } ShareInfo1; typedef struct { int count;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 2.2K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt
} /** Advance the simulated clock, then runs tasks that are ready. Used by the test thread only. */ fun advanceUntil(newTime: Long) { taskRunner.assertLockNotHeld() taskRunner.withLock { check(currentTask == TestThreadSerialTask) nanoTime = newTime yieldUntil(ResumePriority.AfterOtherTasks) } } /** Confirm all tasks have completed. Used by the test thread only. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetShareEnumResponse.java
setUseUnicode(false); final SmbShareInfo[] results = new SmbShareInfo[getNumEntries()]; for (int i = 0; i < getNumEntries(); i++) { results[i] = e = new SmbShareInfo(); e.netName = readString(buffer, bufferIndex, 13, false); bufferIndex += 14; e.type = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; int off = SMBUtil.readInt4(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java
FileEntry[] results = getResults(response); assertNotNull(results); assertEquals(1, results.length); SmbShareInfo share = (SmbShareInfo) results[0]; assertEquals(shareName, share.netName); assertEquals(shareType, share.type); assertEquals(remark, share.remark); } @Test @DisplayName("Test readDataWireFormat with multiple shares")
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/smb1/smb1/NetShareEnumResponse.java
SmbShareInfo e; useUnicode = false; results = new SmbShareInfo[numEntries]; for (int i = 0; i < numEntries; i++) { results[i] = e = new SmbShareInfo(); e.netName = readString(buffer, bufferIndex, 13, false); bufferIndex += 14; e.type = readInt2(buffer, bufferIndex); bufferIndex += 2; int off = readInt4(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
srvsvc.ShareInfo502 info502 = (srvsvc.ShareInfo502) infoField.get(msrpcShareGetInfo); assertNotNull(info502); // Initial state of ShareInfo502 fields assertNull(info502.netname); assertNull(info502.remark); assertNull(info502.path); assertNull(info502.password); assertNull(info502.security_descriptor); assertEquals(0, info502.type);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0)