Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for 33333 (0.05 sec)

  1. pilot/pkg/model/service.go

    // and it maps to an instance with IP 172.16.0.1, such that connections to
    // port 80 are forwarded to port 55446, and connections to port 8080 are
    // forwarded to port 33333,
    //
    // then internally, we have two endpoint structs for the
    // service catalog.mystore.com
    //
    //	--> 172.16.0.1:55446 (with ServicePort pointing to 80) and
    //	--> 172.16.0.1:33333 (with ServicePort pointing to 8080)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			i.Endpoint.Namespace = selector.Name
    		}
    		expectProxyInstances(t, sd, instances[:2], "2.2.2.2")
    		expectProxyInstances(t, sd, instances[2:], "3.3.3.3")
    		expectServiceInstances(t, sd, selector, 0, instances)
    		expectEvents(t, events,
    			Event{Type: "proxy", ID: "3.3.3.3"},
    			Event{Type: "eds", ID: "selector.com", Namespace: selector.Namespace, EndpointCount: 4},
    		)
    
    		createConfigs([]*config.Config{wle2}, store, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    
    class StaticRangeQuantizationTest(quantize_model_test_base.QuantizedModelTest):
    
      @parameterized.parameters(
          testing.parameter_combinations([{
              'shapes': [
                  ([3, 3], [3, 3]),
                  ([3, None], [None, 3]),
                  ([None, None], [None, None]),
                  ([4, 3, 3], [4, 3, 3]),
                  ([4, 3, None], [4, None, 3]),
                  ([None, None, None], [None, None, None]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. pkg/controller/deployment/progress_test.go

    			status:   newDeploymentStatus(3, 3, 2),
    			expected: time.Duration(-1),
    		},
    		{
    			name:     "complete deployment does not need to be requeued",
    			d:        currentDeployment(&pds, 3, 3, 3, 3, nil),
    			status:   newDeploymentStatus(3, 3, 3),
    			expected: time.Duration(-1),
    		},
    		{
    			name:     "already failed deployment does not need to be requeued",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/kubelet_test.go

    				{Type: v1.NodeExternalIP, Address: "1.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "3.3.3.3"},
    			},
    			wantDNSNames: []string{"hostname-1", "hostname-2", "hostname-3"},
    			wantIPs:      []net.IP{netutils.ParseIPSloppy("1.1.1.1"), netutils.ParseIPSloppy("2.2.2.2"), netutils.ParseIPSloppy("3.3.3.3")},
    		},
    		{
    			name: "handle IP and DNS hostnames",
    			addresses: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/mesh_network_test.go

    				Ports: []corev1.ServicePort{{Port: 15443, Protocol: corev1.ProtocolTCP}},
    			},
    			Status: corev1.ServiceStatus{
    				LoadBalancer: corev1.LoadBalancerStatus{Ingress: []corev1.LoadBalancerIngress{{IP: "3.3.3.3"}}},
    			},
    		}, metav1.CreateOptions{})
    		if err != nil {
    			t.Fatal(err)
    		}
    		if err := retry.Until(func() bool {
    			return len(s.PushContext().NetworkManager().GatewaysForNetwork("network-1")) == 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  7. cni/pkg/util/podutil_test.go

    			Name:      "test",
    			Namespace: "test",
    		},
    		Spec: corev1.PodSpec{
    			NodeName: "derp",
    		},
    		Status: corev1.PodStatus{
    			PodIP:  "2.2.2.2",
    			PodIPs: []corev1.PodIP{{IP: "2.2.2.2"}, {IP: "3.3.3.3"}},
    		},
    	}
    
    	podIPs := GetPodIPsIfPresent(pod)
    	assert.Equal(t, len(podIPs), 2)
    }
    
    func TestGetPodIPsIfNoPodIPPresent(t *testing.T) {
    	pod := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

            a < b
            b > a
            a != b
            b != a
    
            where:
            valueA  | unitsA        | valueB | unitsB
            0.1     | Fruit.oranges | 0.101  | Fruit.oranges
            0.33333 | Fruit.oranges | 1      | Fruit.apples
            1       | Fruit.apples  | 1      | Fruit.oranges
            1       | Fruit.oranges | 1      | Fruit.grapefruit
            -1      | Fruit.apples  | 0      | Fruit.oranges
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pkg/proxy/config/config_test.go

    	endpoints2 := &discoveryv1.EndpointSlice{
    		ObjectMeta:  metav1.ObjectMeta{Namespace: "testnamespace", Name: "bar"},
    		AddressType: discoveryv1.AddressTypeIPv4,
    		Endpoints: []discoveryv1.Endpoint{{
    			Addresses: []string{"3.3.3.3"},
    		}, {
    			Addresses: []string{"4.4.4.4"},
    		}},
    		Ports: []discoveryv1.EndpointPort{{Port: ptr.To[int32](80)}},
    	}
    	fakeWatch.Add(endpoints1)
    	fakeWatch.Add(endpoints2)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			Labels:       labels.Instance{"app": "reviews"},
    			Address:      "3.3.3.31",
    			EndpointPort: 7070,
    		},
    	}
    
    	wiReviews2 := &model.WorkloadInstance{
    		Name:      "reviews-2",
    		Namespace: "bookinfo-reviews",
    		Endpoint: &model.IstioEndpoint{
    			Labels:       labels.Instance{"app": "reviews"},
    			Address:      "3.3.3.32",
    			EndpointPort: 7071,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top