Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for 2345 (0.08 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    			Name:             "workload",
    			Namespace:        namespace,
    			GroupVersionKind: gvk.WorkloadEntry,
    			Domain:           "cluster.local",
    		},
    		Spec: &networking.WorkloadEntry{
    			Address: "2.3.4.5",
    			Labels:  labels,
    		},
    	}
    	expectedSvc := &model.Service{
    		Hostname: "service.namespace.svc.cluster.local",
    		Ports: []*model.Port{{
    			Name:     "http",
    			Port:     80,
    			Protocol: "http",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    	test("Addr.Compare", func() {
    		a := MustParseAddr("1.2.3.4")
    		b := MustParseAddr("2.3.4.5")
    		sinkBool = a.Compare(b) == 0
    	})
    	test("Addr.Less", func() {
    		a := MustParseAddr("1.2.3.4")
    		b := MustParseAddr("2.3.4.5")
    		sinkBool = a.Less(b)
    	})
    	test("Addr.Is4", func() { sinkBool = MustParseAddr("1.2.3.4").Is4() })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/math_grad.cc

                          std::vector<Output>* grad_outputs) {
      // The SegmentSum operation sums segments of the Tensor that have the same
      // index in the segment_ids parameter.
      // i.e z = [2, 3, 4, 5], segment_ids [0, 0, 0, 1]
      // will produce [2 + 3 + 4, 5] = [9, 5]
      // The gradient that will flow back to the gather operation will look like
      // [x1, x2], it will have the same shape as the output of the SegmentSum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

        %4 = "tf.D"(%2, %3) : (tensor<f32>, tensor<f32>) -> (tensor<f32>)
        %5 = "tf.D"(%2, %3, %4) : (tensor<f32>, tensor<f32>, tensor<f32>) -> (tensor<f32>)
        %6 = "tf.D"(%2, %3, %4, %5) : (tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>) -> (tensor<f32>)
        %7 = "tf.D"(%2, %3, %4, %5, %6) : (tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>) -> (tensor<f32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    }
    
    func TestOutboundListenerRoute(t *testing.T) {
    	testOutboundListenerRoute(t,
    		buildService("test1.com", "1.2.3.4", "unknown", tnow.Add(1*time.Second)),
    		buildService("test2.com", "2.3.4.5", protocol.HTTP, tnow),
    		buildService("test3.com", "3.4.5.6", "unknown", tnow.Add(2*time.Second)))
    }
    
    func TestOutboundListenerConfig_WithSidecar(t *testing.T) {
    	// Add a service and verify it's config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    			},
    		},
    	}
    
    	sidecarOutboundIn := []*listener.Listener{
    		{
    			Name: "12345",
    			Address: &core.Address{
    				Address: &core.Address_SocketAddress{
    					SocketAddress: &core.SocketAddress{
    						PortSpecifier: &core.SocketAddress_PortValue{
    							PortValue: 12345,
    						},
    					},
    				},
    			},
    			FilterChains: []*listener.FilterChain{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	// arrays
    	{"%v", array, "[1 2 3 4 5]"},
    	{"%v", iarray, "[1 hello 2.5 <nil>]"},
    	{"%v", barray, "[1 2 3 4 5]"},
    	{"%v", &array, "&[1 2 3 4 5]"},
    	{"%v", &iarray, "&[1 hello 2.5 <nil>]"},
    	{"%v", &barray, "&[1 2 3 4 5]"},
    
    	// slices
    	{"%v", slice, "[1 2 3 4 5]"},
    	{"%v", islice, "[1 hello 2.5 <nil>]"},
    	{"%v", bslice, "[1 2 3 4 5]"},
    	{"%v", &slice, "&[1 2 3 4 5]"},
    	{"%v", &islice, "&[1 hello 2.5 <nil>]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/defaults_test.go

    				".Spec.Containers[0].Ports[0].ContainerPort": "12345",
    			}
    			m[".Spec.Containers"] = `[{"name":"","ports":[{"containerPort":12345,"protocol":"TCP"}],"resources":{},"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent"}]`
    			m[".Spec.Containers[0].Ports"] = `[{"containerPort":12345,"protocol":"TCP"}]`
    			for k, v := range expectedDefaults {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        Iterator<Integer> iterator = Collections.singleton(0).iterator();
        assertEquals(1, Iterators.size(iterator));
      }
    
      public void testSize_partiallyConsumed() {
        Iterator<Integer> iterator = asList(1, 2, 3, 4, 5).iterator();
        iterator.next();
        iterator.next();
        assertEquals(3, Iterators.size(iterator));
      }
    
      public void test_contains_nonnull_yes() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			),
    		},
    		{
    			name: "PodAntiAffinity fails PreFilter with an invalid antiaffinity label syntax",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
Back to top