Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MYCOMPUTER (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top