Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for workaround (0.16 sec)

  1. tests/integration/pilot/common/routing.go

    			// CI has some issues with ipv6 DNS resolution, due to which
    			// we are not able to directly use the host name in the connectivity tests.
    			// Hence using a bogus IPv6 address with -HHost option as a workaround to
    			// simulate ServiceEntry based wildcard listener scenarios.
    			fakeExternalAddress = "2002::1"
    		} else {
    			fakeExternalAddress = "1.1.1.1"
    		}
    	}
    
    	testCases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        Location loc = pack_op.getLoc();
        auto output_type = pack_op.getType().cast<ShapedType>();
        if (!output_type.hasStaticShape()) return failure();
    
        // This is to workaround the unnecessary cast i64 -> i32.
        SmallVector<int32_t, 4> new_shape_array;
        for (auto size : output_type.getShape()) {
          new_shape_array.push_back(ConvertToTfliteSize(size));
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

    ## Known Issues for v1.5.1
    
    - `hack/local-up-cluster.sh` script times out waiting for apiserver to answer, see [#38847](https://github.com/kubernetes/kubernetes/issues/38847).
      To workaround this, modify the script to pass `--anonymous-auth=true` to `sudo -E "${GO_OUT}/hyperkube" apiserver ...` when starting `kube-apiserver`.
    
    # v1.5.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		},
    		{
    			name: "block create: new min or allow higher than oldValue",
    			obj:  9,
    			// Can't use != null because type is integer and no overload
    			// workaround by comparing type, but kinda hacky
    			schema: cloneWithRule(&integerType, "self >= 10 || (oldSelf.hasValue() && oldSelf.value() <= self)"),
    			errors: []string{"failed rule"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    			// the server's port should not be reused for another server yet.)
    			<-gotOnShutdown
    			// TODO(#59038): The HTTP/2 server empirically does not always reject new
    			// requests. As a workaround, loop until we see a failure.
    			for !t.Failed() {
    				res, err := cst.c.Get(cst.ts.URL)
    				if err != nil {
    					break
    				}
    				out, _ := io.ReadAll(res.Body)
    				res.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top