Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for patched (0.61 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                  }
                },
                "application/json-patch+json": {
                  "schema": {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
                  }
                },
                "application/merge-patch+json": {
                  "schema": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                  }
                },
                "application/json-patch+json": {
                  "schema": {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
                  }
                },
                "application/merge-patch+json": {
                  "schema": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // was that a trailing-slash pattern, like "/", matched a path longer than
    // it, like "/a".
    //
    // With wildcards, we define an inexact match as any one where a multi wildcard
    // matches a non-empty string. All other matches are exact.
    // For example, these are all exact matches:
    //
    //	pattern   path
    //	/a        /a
    //	/{x}      /a
    //	/a/{$}    /a/
    //	/a/       /a/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    				return strings.HasPrefix(c.Name, "inbound|") || strings.HasPrefix(c.Name, "outbound|")
    			},
    			destRule: nil,
    			expected: getDefaultCircuitBreakerThresholds(),
    		},
    		{
    			name:   "port-level policy matched",
    			filter: inboundFilter,
    			destRule: &networking.DestinationRule{
    				Host: "backend.default.svc.cluster.local",
    				TrafficPolicy: &networking.TrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    			actions := kubeClient.Actions()
    			if tc.wantPatches == 0 {
    				require.Len(t, actions, 0)
    				return
    			}
    
    			// patch, then patch, get, patch, get, patch, ... up to initial patch + nodeStatusUpdateRetry patches
    			expectedActions := 2*tc.wantPatches - 2
    			if tc.wantPatches == 1 {
    				expectedActions = 1
    			}
    			require.Len(t, actions, expectedActions)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * the original {@code ClosingFuture} instance.
       *
       * @param exceptionType the exception type that triggers use of {@code fallback}. The exception
       *     type is matched against this step's exception. "This step's exception" means the cause of
       *     the {@link ExecutionException} thrown by {@link Future#get()} on the {@link Future}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_OperandHasAtleastRank<0, 2>,
        PredOpTrait<"input and result must have the same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        Pure]> {
      let summary = [{
        Returns a batched matrix tensor with new batched diagonal values.
      }];
    
      let description = [{
    Given `input` and `diagonal`, this operation returns a tensor with the
    same shape and values as `input`, except for the main diagonal of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * the original {@code ClosingFuture} instance.
       *
       * @param exceptionType the exception type that triggers use of {@code fallback}. The exception
       *     type is matched against this step's exception. "This step's exception" means the cause of
       *     the {@link ExecutionException} thrown by {@link Future#get()} on the {@link Future}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    	for _, chain := range chains {
    		nMatched := 0
    		for _, expectedChain := range test.expectedChains {
    			if doesMatch(expectedChain, chain) {
    				nMatched++
    			}
    		}
    		// Allow additional unknown chains if systemLax is set
    		if nMatched == 0 && test.systemLax == false || nMatched > 1 {
    			t.Errorf("Got %v matches for chain %v", nMatched, chainToDebugString(chain))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        // and can be removed.
        auto fakeQuantOp = cast<FakeQuantOp>(op);
        for (auto* operand : fakeQuantOp.getResult().getUsers())
          if (!HasValidMinMaxAttribute(operand)) return failure();
    
        return success();
      }
    
      void rewrite(Operation* op, PatternRewriter& rewriter) const override {
        // Replace the matched FakeQuantOp by its primary operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top