- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 25 for share_name (0.4 sec)
-
android/guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java
.addValue(null) .add(SHORT_NAME, Optional.of("1")) .add(LONG_NAME, Optional.of("1")) .add(SHORT_NAME, Optional.absent()) .add(LONG_NAME, Optional.absent()) .add(SHORT_NAME, Optional.of("2")) .add(SHORT_NAME, Optional.absent()) .addValue(null) .add(SHORT_NAME, new int[] {1}) .add(LONG_NAME, new int[] {2})
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegisterRequest.java
* * @return the share name */ public String getShareName() { return shareName; } /** * Sets the share name to monitor. * * @param shareName the share name */ public void setShareName(String shareName) { this.shareName = shareName; } /** * Gets the server address. * * @return the server address */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/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 - 26.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareGetInfo.java
/** * Creates a new request to get share information. * * @param server the server name * @param sharename the name of the share to query */ public MsrpcShareGetInfo(final String server, final String sharename) { super(server, sharename, 502, new srvsvc.ShareInfo502()); ptype = 0; flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
UNREGISTERING, FAILED, EXPIRED } public WitnessRegistration(String shareName, InetAddress serverAddress, WitnessServiceType serviceType) { this.registrationId = generateRegistrationId(); this.shareName = shareName; this.serverAddress = serverAddress; this.serviceType = serviceType;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegistration.java
* * @param shareName the SMB share name to monitor * @param serverAddress the server IP address * @param serviceType the type of witness service */ public WitnessRegistration(String shareName, InetAddress serverAddress, WitnessServiceType serviceType) { this.registrationId = generateRegistrationId(); this.shareName = shareName; this.serverAddress = serverAddress;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
assertEquals(testSharename, msrpcShareGetInfo.sharename); } @ParameterizedTest @NullAndEmptySource @ValueSource(strings = { "", "share1", "\\\\server\\share", "C$", "ADMIN$", "IPC$" }) void testConstructorWithDifferentSharenames(String sharename) { // Test with various sharename values MsrpcShareGetInfo shareGetInfo = new MsrpcShareGetInfo(testServer, sharename); assertNotNull(shareGetInfo);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfo.java
/** * Creates a new request to get share information. * * @param server the server name * @param sharename the name of the share to query */ public MsrpcShareGetInfo(final String server, final String sharename) { super(server, sharename, 502, new srvsvc.ShareInfo502()); this.ptype = 0; this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java
/** The parse field for the featureset name. */ public static final ParseField FEATURESET_NAME = new ParseField("featureset"); /** The parse field for the store name. */ public static final ParseField STORE_NAME = new ParseField("store"); /** The parse field for the query parameters. */ public static final ParseField PARAMS = new ParseField("params"); /** The parse field for the active features. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
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)