Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for 123x (0.1 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    		buildService("test", "test1", "1.2.3.3", "TCP", 8083),
    		buildService("kubernetes", "test2", "1.2.3.4", "TCP", 8084),
    		buildService("test", "test2", "1.2.3.5", "TCP", 8085),
    		buildService("test", "test2", "None", "TCP", 8085),
    		buildService("test", "test2", "", "TCP", 8085),
    		buildService("not-special", metav1.NamespaceDefault, "1.2.3.8", "TCP", 8088),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util_test.go

    			},
    		},
    		{
    			"success case with no PrefixLen",
    			"1.2.3.4",
    			&core.CidrRange{
    				AddressPrefix: "1.2.3.4",
    				PrefixLen: &wrappers.UInt32Value{
    					Value: 32,
    				},
    			},
    		},
    		{
    			"success case with PrefixLen",
    			"1.2.3.4/16",
    			&core.CidrRange{
    				AddressPrefix: "1.2.3.4",
    				PrefixLen: &wrappers.UInt32Value{
    					Value: 16,
    				},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        assertEquals("::102:304", InetAddresses.toAddrString(InetAddresses.forString("::1.2.3.4")));
      }
    
      public void testToUriStringIPv4() {
        String ipStr = "1.2.3.4";
        InetAddress ip = InetAddresses.forString(ipStr);
        assertEquals("1.2.3.4", InetAddresses.toUriString(ip));
      }
    
      public void testToUriStringIPv6() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. pkg/kubelet/network/dns/dns_test.go

    		{"#comment\nnameserver 1.2.3.4\nsearch", []string{"1.2.3.4"}, []string{}, []string{}, false}, // nameserver specified and search empty
    		{"nameserver 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{" nameserver 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    		{"\tnameserver 1.2.3.4", []string{"1.2.3.4"}, []string{}, []string{}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				},
    				Spec: v1.PodSpec{},
    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    					PodIP: "1.2.3.4",
    				},
    			},
    			result: &workloadapi.Workload{
    				Uid:               "cluster0//Pod/ns/name",
    				Name:              "name",
    				Namespace:         "ns",
    				Addresses:         [][]byte{netip.AddrFrom4([4]byte{1, 2, 3, 4}).AsSlice()},
    				Network:           testNW,
    				CanonicalName:     "name",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/number_generated_rules_test.go

    			svcFunc: func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeLoadBalancer
    				svc.Spec.ExternalIPs = []string{"1.2.3.4"}
    				svc.Spec.LoadBalancerSourceRanges = []string{" 1.2.3.4/28"}
    				svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{
    					IP: "1.2.3.4",
    				}}
    			},
    			services:            0,
    			epPerService:        0,
    			expectedFilterRules: 4,
    			expectedNatRules:    5,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/net/netip/netip_test.go

    	tests := []struct {
    		a, b Addr
    		want bool
    	}{
    		{Addr{}, Addr{}, false},
    		{Addr{}, mustIP("1.2.3.4"), true},
    		{mustIP("1.2.3.4"), Addr{}, false},
    
    		{mustIP("1.2.3.4"), mustIP("0102:0304::0"), true},
    		{mustIP("0102:0304::0"), mustIP("1.2.3.4"), false},
    		{mustIP("1.2.3.4"), mustIP("1.2.3.4"), false},
    
    		{mustIP("::1"), mustIP("::2"), true},
    		{mustIP("::1"), mustIP("::1%foo"), true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/const_tensor.mlir

    // CHECK-LABEL: func @dense_tensor
    func.func @dense_tensor() -> tensor<4xui64> {
      // CHECK: tfrt_fallback_async.const_dense_tensor dense<[1, 2, 3, 4]> : tensor<4xui64>
      %0 = "tf.Const"() {value = dense<[1, 2, 3, 4]> : tensor<4xui64>} : () -> tensor<4xui64>
      // CHECK: tfrt_fallback_async.const_dense_tensor  dense<1.000000e+00> : tensor<1xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    		{Address: "1.2.3.4", Port: 81, Protocol: simulation.TCP, HostHeader: "headless.default.svc.cluster.local"},
    
    		{Address: "1.2.3.4", Port: 82, Protocol: simulation.TCP, HostHeader: "headless.default.svc.cluster.local"},
    
    		// Use short host name
    		{Address: "1.2.3.4", Port: 83, Protocol: simulation.TCP, TLS: simulation.TLS, HostHeader: "headless.default"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/net/http/cookiejar/jar_test.go

    	},
    	{
    		"TestIpAddress #1.",
    		"http://1.2.3.4/foo",
    		[]string{"a=1; path=/"},
    		"a=1",
    		[]query{{"http://1.2.3.4/foo", "a=1"}},
    	},
    	{
    		"TestIpAddress #2.",
    		"http://1.2.3.4/foo",
    		[]string{
    			"a=1; domain=.1.2.3.4",
    			"b=2; domain=.3.4"},
    		"",
    		[]query{{"http://1.2.3.4/foo", ""}},
    	},
    	{
    		"TestIpAddress #3.",
    		"http://1.2.3.4/foo",
    		[]string{"a=1; domain=1.2.3.3"},
    		"",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top