- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for MYCOMPUTER (0.06 sec)
-
src/test/java/jcifs/smb1/UniAddressTest.java
private static Stream<Arguments> hostnamesProvider() { return Stream.of(Arguments.of("localhost", "127.0.0.1", "LOCALHOST"), Arguments.of("mycomputer.local", "mycomputer", "MYCOMPUTER"), Arguments.of("mycomputer.example.com", "mycomputer", "MYCOMPUTER")); } /* --------------------------------------------------------------------- * 1. Basic constructor validation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
* * @return wrapped address */ public Object getAddress() { return this.addr; } /** * Return the hostname of this address such as "MYCOMPUTER". * * @return the hostname associated with the address */ @Override public String getHostName() { if (this.addr instanceof NbtAddress) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
* * @return the underlying address object */ public Object getAddress() { return addr; } /** * Return the hostname of this address such as "MYCOMPUTER". * * @return the hostname of this address */ public String getHostName() { if (addr instanceof NbtAddress) { return ((NbtAddress) addr).getHostName(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0)