- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getUnknownName (0.06 sec)
-
src/test/java/jcifs/NameServiceClientTest.java
when(nameServiceClient.getUnknownName()).thenReturn(expectedName); // Act NetbiosName actualName = nameServiceClient.getUnknownName(); // Assert assertNotNull(actualName); assertEquals(expectedName, actualName); verify(nameServiceClient, times(1)).getUnknownName(); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
*/ public Lmhosts getLmhosts() { return this.lmhosts; } /** * {@inheritDoc} * * @see jcifs.NameServiceClient#getUnknownName() */ @Override public Name getUnknownName() { return this.unknownName; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
* * @return the local host name */ NetbiosName getLocalName(); /** * Gets the unknown NetBIOS name instance. * * @return the unknown name */ NetbiosName getUnknownName(); /** * Retrieve all addresses of a host by it's address. NetBIOS hosts can * have many names for a given IP address. The name and IP address make theRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.4K bytes - Viewed (0)