Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for eth1 (0.07 sec)

  1. cmd/net_test.go

    	}{
    		{"localhost", false},
    		{"localhost:9000", false},
    		{"example.com", false},
    		{"http://192.168.1.0", false},
    		{"http://192.168.1.0:9000", false},
    		{"192.168.1.0", true},
    		{"[2001:3984:3989::20%eth0]:9000", true},
    	}
    
    	for _, testCase := range testCases {
    		ret := isHostIP(testCase.args)
    		if testCase.expectedResult != ret {
    			t.Fatalf("expected: %v , got: %v", testCase.expectedResult, ret)
    		}
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 19 08:43:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/net/InetAddressesTest.java

      }
    
      public void testIPv6AddressWithBadScopeId() throws SocketException, UnknownHostException {
        assertThrows(
            IllegalArgumentException.class,
            () -> InetAddresses.forString("1180::b059:65f4:e877:c40%eth9"));
      }
    
      public void testToAddrStringIPv4() {
        // Don't need to test IPv4 much; it just calls getHostAddress().
        assertEquals("1.2.3.4", InetAddresses.toAddrString(InetAddresses.forString("1.2.3.4")));
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/InetAddresses.java

       *
       * @param ipString {@code String} containing an IPv4 or IPv6 string literal, e.g. {@code
       *     "192.168.0.1"} or {@code "2001:db8::1"} or with a scope ID, e.g. {@code "2001:db8::1%eth0"}
       * @return {@link InetAddress} representing the argument
       * @throws IllegalArgumentException if the argument is not a valid IP string literal
       */
      @CanIgnoreReturnValue // TODO(b/219820829): consider removing
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InetAddresses.java

       *
       * @param ipString {@code String} containing an IPv4 or IPv6 string literal, e.g. {@code
       *     "192.168.0.1"} or {@code "2001:db8::1"} or with a scope ID, e.g. {@code "2001:db8::1%eth0"}
       * @return {@link InetAddress} representing the argument
       * @throws IllegalArgumentException if the argument is not a valid IP string literal
       */
      @CanIgnoreReturnValue // TODO(b/219820829): consider removing
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. cmd/testdata/undeleteable-object.tgz

     true§MetaUsr‚¤etagÙ d6566afb36d109141150¬content-type°application/json¡v ÎHÅcV ¤nullÅ , P …èbAhàa tv ý\ æKW·mP/!ŒKï°KSäŠNâU L~Y½–Æ ¢bë 2!YßÆÈ2¸™A#:}ãwÞ“îLé ÐaÙ6 ÔP Ø Ub9Éø’ {Ìñr õ[O<‘ Dv †˜_ä|ª³¦äÑ@$#[SŠ ‹âVââ päÚo…z Ôc™)œ U •3—tŽm0SôÇ5 üh äÒózýI¥Þ1»i¸gp âÊíÿ€JÄ k<Ë« fKp8»‹Àês Á è‹•´´ (È…¯àÄlŸI€ŽÌüwÙ& –awuÏîE w.ßDîk®)Ž× ­H ôOói³q* ÷Ñ#Àýcl£k#0…x ;ŸÊ•é‘ìu á|[ lÎÔH¼Ý 7¾àp¤“§ŒV®˜5`CuÒí> ÏB õ ¸§ojR7 »´F© §äK GÉZ€a¬O ýH p\êj; û Ë àÅp¼ñ» 0IqÈ·ìÂ8»C8Ë©@Èg+sø %š} ëÈ¡3™ ÙŽ©ª‹qÀºYP¼]ý~:»–cQoÒôBžXÑ{Òû¤þÉÆ...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    00CF          ; mapped                 ; 00EF          # 1.1  LATIN CAPITAL LETTER I WITH DIAERESIS
    00D0          ; mapped                 ; 00F0          # 1.1  LATIN CAPITAL LETTER ETH
    00D1          ; mapped                 ; 00F1          # 1.1  LATIN CAPITAL LETTER N WITH TILDE
    00D2          ; mapped                 ; 00F2          # 1.1  LATIN CAPITAL LETTER O WITH GRAVE
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top