- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 46 for getServers (2.16 sec)
-
mockwebserver-junit4/api/mockwebserver3-junit4.api
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jun 16 22:36:18 UTC 2025 - 183 bytes - Viewed (0) -
src/main/java/jcifs/internal/RequestWithPath.java
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/test/java/jcifs/dcerpc/DcerpcHandleTest.java
this.server = "test_server"; this.serverWithDfs = "test_server_dfs"; this.sessionKey = new byte[] { 1, 2, 3, 4 }; } @Override public String getServer() { return server; } @Override public String getServerWithDfs() { return serverWithDfs; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/DfsReferralData.java
*/ <T extends DfsReferralData> T unwrap(Class<T> type); /** * Get the server this referral points to * * @return the server this referral points to */ String getServer(); /** * Get the domain this referral is for * * @return the domain this referral is for */ String getDomain(); /** * Get the share this referral points to
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/DcerpcHandle.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcBinding.java
*/ public Map<String, Object> getOptions() { return this.options; } /** * Get the server for this binding. * @return the server */ public String getServer() { return this.server; } /** * Get the endpoint for this binding. * @return the endpoint */ public String getEndpoint() { return this.endpoint; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
} @Test void testConstructorAndGetters() { assertEquals(PROTO, dcerpcBinding.getProto(), "Protocol should match the constructor argument."); assertEquals(SERVER, dcerpcBinding.getServer(), "Server should match the constructor argument."); assertNull(dcerpcBinding.getOptions(), "Options should be null initially."); assertNull(dcerpcBinding.getEndpoint(), "Endpoint should be null initially.");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
@Override public String getFullUNCPath() { return this.fullName; } /** * {@inheritDoc} * * @see jcifs.internal.RequestWithPath#getServer() */ @Override public String getServer() { return this.server; } /** * {@inheritDoc} * * @see jcifs.internal.RequestWithPath#getDomain() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
return null; } @Override public String getServerWithDfs() { return null; } @Override public String getServer() { return null; } @Override public String getDfsPath() { return null; } @Override public int getPort() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
assertNull(request.getFullUNCPath()); assertNull(request.getServer()); assertNull(request.getDomain()); request.setFullUNCPath("DOMAIN", "SERVER", "\\\\SERVER\\share\\file.txt"); assertEquals("DOMAIN", request.getDomain()); assertEquals("SERVER", request.getServer()); assertEquals("\\\\SERVER\\share\\file.txt", request.getFullUNCPath()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0)