Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 328 for _1111 (0.05 sec)

  1. pilot/pkg/xds/testdata/benchmarks/virtualservice.yaml

    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
    ---
    # Set up .Services VirtualServices, each pointing to a different Service
    {{- range $i := until .Services }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 01 15:55:05 UTC 2020
    - 1K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/test/groovy/org/gradle/scala/compile/internal/ScalaCompileOptionsConfigurerTest.groovy

            11            | false             | '2.11.12'           | '-target:jvm-1.11'
            11            | false             | '2.12.0'            | '-target:jvm-1.11'
            11            | false             | '2.12.14'           | '-target:jvm-1.11'
            11            | false             | '2.13.0'            | '-target:jvm-1.11'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/vm_test.go

    				Labels: map[string]string{
    					"merge": "wg",
    					"wg":    "1",
    				},
    			},
    		},
    		Status: nil,
    	})
    	proxy := &model.Proxy{
    		Labels:      map[string]string{"merge": "me"},
    		IPAddresses: []string{"1.1.1.1"},
    		Metadata: &model.NodeMetadata{
    			AutoRegisterGroup: "wg",
    			Namespace:         "namespace",
    			Network:           "network1",
    			Labels:            map[string]string{"merge": "meta", "meta": "2"},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_quantization_unit_loc.mlir

      %0 = "tf.Cast"(%arg0) {Truncate = false, device = ""} : (tensor<1x3x4x3xf32>) -> tensor<1x3x4x3xbf16>
      %1 = "tf.Conv2D"(%0, %cst) {data_format = "NHWC", dilations = [1, 1, 1, 1], padding = "SAME", strides = [1, 1, 2, 1]}
           : (tensor<1x3x4x3xbf16>, tensor<2x3x3x2xbf16>) -> tensor<1x3x2x2xbf16> loc("Model/conv2d")
      %2 = "tf.Cast"(%1) {Truncate = false} : (tensor<1x3x2x2xbf16>) -> tensor<1x3x2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 02:39:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_simulation_test.go

    spec:
      hosts: ["a.example.com"]
      ports:
      - number: 80
        targetPort: 8081
        name: http
        protocol: HTTP
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          istio: ingressgateway
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-instance-2
      namespace: istio-system
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/benchmarks/strict.yaml

    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      - number: 7070
        name: tcp
        protocol: TCP
      - number: 443
        name: https
        protocol: HTTPS
      - number: 9090
        name: auto
        protocol: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 594 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/prepare_lifting.mlir

      %cst_0 = "tf.Const"() {value = dense<0.400000e+00> : tensor<3xf32>} : () -> tensor<3xf32>
      %0 = "tf.DepthwiseConv2dNative"(%arg0, %cst) {data_format = "NHWC", device = "", dilations = [1, 1, 1, 1], explicit_paddings = [], padding = "SAME", strides = [1, 1, 1, 1]} : (tensor<*xf32>, tensor<2x3x3x1xf32>) -> tensor<?x?x?x3xf32>
      %1 = "tf.AddV2"(%0, %cst_0) : (tensor<?x?x?x3xf32>, tensor<3xf32>) -> tensor<*xf32>
      func.return %1 : tensor<*xf32>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:24:59 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/conversion_test.go

    		// only Primary IP Provided
    		{
    			PodIP: "1.1.1.1",
    		},
    		{
    			// both are not provided
    			PodIP:  "",
    			PodIPs: nil,
    		},
    		// only list of IPs
    		{
    			PodIPs: []v1.PodIP{
    				{IP: "1.1.1.1"},
    				{IP: "2.2.2.2"},
    			},
    		},
    		// Both
    		{
    			PodIP: "1.1.1.1",
    			PodIPs: []v1.PodIP{
    				{IP: "1.1.1.1"},
    				{IP: "2.2.2.2"},
    			},
    		},
    		// v4 and v6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:15 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_to_nhwc.mlir

      // ------------------------------------------------------------------------ //
      %9 = "tf.Conv2D"(%8, %arg4)
           {
             data_format = "NCHW",
             dilations = [1, 1, 1, 1],
             explicit_paddings = [],
             padding = "VALID",
             strides = [1, 1, 1, 1]
           } : (tensor<?x64x56x56xf32>, tensor<1x1x64x256xf32>) -> tensor<?x256x56x56xf32>
    
      // CHECK: %[[CONV1:[0-9]*]] = "tf.Conv2D"(%[[MAX_POOL]], %arg4)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/testdata/benchmarks/http.yaml

    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          security.istio.io/tlsMode: istio
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 907 bytes
    - Viewed (0)
Back to top