Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 100xi1 (0.12 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "InternalIP is preferred over ExternalIP",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeExternalIP, Address: "192.168.0.1"},
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    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/core/cluster_test.go

    			ServicePort: servicePort,
    			Endpoint: &model.IstioEndpoint{
    				Address:      "1.1.1.1",
    				EndpointPort: 10001,
    			},
    		},
    		{
    			Service:     service,
    			ServicePort: servicePort,
    			Endpoint: &model.IstioEndpoint{
    				Address:      "2001:1::1",
    				EndpointPort: 10001,
    			},
    		},
    	}
    	inboundFilter := func(c *cluster.Cluster) bool {
    		return strings.HasPrefix(c.Name, "inbound|")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    func.func @select(
        %arg0: tensor<1x3xi1>,
        %arg1: tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>,
        %arg2: tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>
      ) -> tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>> {
      %0 = "stablehlo.select"(%arg0, %arg1, %arg2) : (
        tensor<1x3xi1>,
        tensor<1x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    					Spec: &networking.Gateway{
    						Servers: []*networking.Server{
    							{
    								Port:  &networking.Port{Name: "tcp", Number: 8000, Protocol: "TCP"},
    								Hosts: []string{"*"},
    								Bind:  "10.0.0.1",
    							},
    						},
    					},
    				},
    				{
    					Meta: config.Meta{Name: "gateway2", Namespace: "testns", GroupVersionKind: gvk.Gateway},
    					Spec: &networking.Gateway{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation_test.go

    					Template:             validPodTemplateSpecForGenerated,
    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		"spec.maxFailedIndexes: Invalid value: 100001: must be less than or equal to 100000": {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:          pointer.Int32(100_001),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  6. cmd/object-handlers_test.go

    				fmt.Sprintf("bytes=-%d", objLen/2),
    				// Read middle half of object
    				fmt.Sprintf("bytes=%d-%d", objLen/4, objLen*3/4),
    				// Read 100MiB of the object from the beginning
    				fmt.Sprintf("bytes=%d-%d", 0, 100*humanize.MiByte),
    				// Read 100MiB of the object from the end
    				fmt.Sprintf("bytes=-%d", 100*humanize.MiByte),
    			}
    			for _, rangeHdr := range rangeHdrs {
    				mkGetReq(oi, rangeHdr, caseNumber, sf)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    			endpoints: []endpoint{
    				{"10.0.1.1", testHostname},
    				{"10.0.1.2", "host1"},
    				{"10.0.1.3", "host2"},
    			},
    		},
    		{
    			name:                  "externalTrafficPolicy is set and there are local endpoints",
    			externalTrafficPolicy: v1.ServiceExternalTrafficPolicyLocal,
    			endpoints: []endpoint{
    				{"10.0.1.1", testHostname},
    				{"10.0.1.2", "host1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.emptyDoubles.isSorted()",
    				"self.unsortedDoubles.isSorted() == false",
    				"self.doubles.indexOf(2.0) == 1",
    				"self.doubles.lastIndexOf(2.0) == 2",
    				"self.doubles.indexOf(10.0) == -1",
    				"self.doubles.lastIndexOf(10.0) == -1",
    
    				"self.intBackedDoubles.sum() == 8.0",
    				"self.intBackedDoubles.min() == 1.0",
    				"self.intBackedDoubles.max() == 3.0",
    				"self.emptyIntBackedDDoubles.sum() == 0.0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			// 2. to fulfil "node" constraint, incoming pod can be placed on node-a or node-b
    			// intersection of (1) and (2) returns no node
    			name: "Constraints hold different labelSelectors, spreads = [1/0, 0/0/1/1]",
    			pod: st.MakePod().Name("p").Label("foo", "").Label("bar", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    		},
    		{
    			in:   []int16{1, 20, 300},
    			i:    0,
    			j:    2,
    			want: []int16{300, 20, 1},
    		},
    		{
    			in:   []int8{1, 20, 100},
    			i:    0,
    			j:    2,
    			want: []int8{100, 20, 1},
    		},
    		{
    			in:   []*I{&a, &b, &c},
    			i:    0,
    			j:    2,
    			want: []*I{&c, &b, &a},
    		},
    		{
    			in:   []string{"eric", "sergey", "larry"},
    			i:    0,
    			j:    2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top