Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 158 for 8003 (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/result-sharding.mlir

        func.return %arg0, %arg1, %arg2 : tensor<128x10xf32>, tensor<10x1024xf32>, tensor<128x1024xf32>
      }
    }
    
    // The following xla::OpSharding protos are used:
    //  Serialized string:
    //   "\08\03\1A\02\01\02\22\02\00\01"
    //  Proto debug string:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 23 18:56:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/routes/k8s-gateway-http-route-path-prefix/configdump.json

            ],
            "routes": [
             {
              "match": {
               "case_sensitive": true,
               "path_separated_prefix": "/get"
              },
              "route": {
               "cluster": "outbound|8000||httpbin.default.svc.cluster.local",
               "timeout": "0s",
               "retry_policy": {
                "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                "num_retries": 2,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. samples/extauthz/README.md

        ```console
        $ kubectl exec -it $(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name}) -c sleep -- curl -v ext-authz:8000 -H "x-ext-authz: allow"
           *   Trying 10.97.88.183:8000...
           * Connected to ext-authz-server (10.97.88.183) port 8000 (#0)
           > GET / HTTP/1.1
           > Host: ext-authz-server:8000
           > User-Agent: curl/7.73.0-DEV
           > Accept: */*
           > x-ext-authz: allow
           >
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. test/nilptr5_aix.go

    	return x + y
    }
    
    type T [29]byte
    
    func f6(p, q *T) {
    	x := *p // ERROR "generated nil check"
    	*q = x  // ERROR "removed nil check"
    }
    
    // make sure to remove nil check for memory move (issue #18003)
    func f8(t *[8]int) [8]int {
    	return *t // ERROR "generated nil check"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 806 bytes
    - Viewed (0)
  5. test/nilptr5_wasm.go

    	return x + y
    }
    
    type T [29]byte
    
    func f6(p, q *T) {
    	x := *p // ERROR "generated nil check"
    	*q = x  // ERROR "generated nil check"
    }
    
    // make sure to remove nil check for memory move (issue #18003)
    func f8(t *[8]int) [8]int {
    	return *t // ERROR "generated nil check"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 813 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/prepare_tpu_computation_for_tf_export.mlir

    func.func @ShardingAttr(%arg0: tensor<128x10xf32> {mhlo.sharding = "\08\03\1A\02\01\02\22\02\00\01"}, %arg1: tensor<10x1024xf32> {mhlo.sharding = "\08\01\1A\01\01\22\01\00"}, %arg2: tensor<128x1024xf32> {mhlo.sharding = ""}) -> (tensor<128x10xf32>, tensor<10x1024xf32>, tensor<128x1024xf32>) {
    
      // CHECK: %[[SHARDED_ARG0:.*]] = "tf.XlaSharding"(%arg0) <{_XlaSharding = "\08\03\1A\02\01\02\22\02\00\01", sharding = "\08\03\1A\02\01\02\22\02\00\01"}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 18:46:36 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/argument-sharding.mlir

      func.func @main(%arg0: tensor<128x10xf32> {mhlo.sharding = "\08\03\1A\02\01\02\22\02\00\01"}, %arg1: tensor<10x1024xf32> {mhlo.sharding = "\08\01\1A\01\01\22\01\00"}, %arg2: tensor<128x1024xf32> {mhlo.sharding = ""}) {
        func.return
      }
    }
    
    // The following xla::OpSharding protos are used:
    //  Serialized string:
    //   "\08\03\1A\02\01\02\22\02\00\01"
    //  Proto debug string:
    //   type: OTHER
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/ingress/conversion_test.go

    											Port: knetworking.ServiceBackendPort{Number: 8000},
    										},
    									},
    								},
    								{
    									Path:     "/test/foo",
    									PathType: &prefix,
    									Backend: knetworking.IngressBackend{
    										Service: &knetworking.IngressServiceBackend{
    											Name: "foo",
    											Port: knetworking.ServiceBackendPort{Number: 8000},
    										},
    									},
    								},
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. samples/jwt-server/jwt-server.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: jwt-server
      labels:
        app: jwt-server
    spec:
      ports:
      - name: http
        port: 8000
        targetPort: 8000
      - name: https
        port: 8443
        targetPort: 8443
      selector:
        app: jwt-server
    ---
    apiVersion: v1
    kind: Secret
    metadata:
      name: jwt-cert-key-secret
    # command to generate certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/debugging.md

    ```
    
    </div>
    
    then the internal variable `__name__` in your file, created automatically by Python, will have as value the string `"__main__"`.
    
    So, the section:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    will run.
    
    ---
    
    This won't happen if you import that module (file).
    
    So, if you have another file `importer.py` with:
    
    ```Python
    from myapp import app
    
    # Some more code
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jun 22 17:04:16 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top