Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for Patches (0.27 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            for (def line : stream.call().readLines()) {
                def matcher = pattern.matcher(line)
                if (matcher.matches()) {
                    dirs.add(new TestFile(matcher.group(1)))
                }
            }
            return dirs
        }
    
        TestFile getGcFile() {
            return cacheDir.file("gc.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    {return s[e](t)}catch(t){return null}finally{a&&a.forEach(function(t){return t()})}}var Tt=/(^|[^\\],)\s*[!>+~-]/,Et=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g;function At(t){return D(t)&&t.match(Tt)}var _t=/.*?[^\\](?:,|$)/g;var Ct=Element.prototype,Nt=Ct.matches||Ct.webkitMatchesSelector||Ct.msMatchesSelector;function Mt(t,e){return V(t).some(function(t){return Nt.call(t,e)})}var zt=Ct.closest||function(t){var e=this;do{if(Mt(e,t))return e}while(e=Pt(e))};function Dt(t,e){return w(e,">")&&(e=e.slice(1)),...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      NodeDef arg_def;
      TF_RETURN_IF_ERROR(arg_builder.Finalize(&arg_def));
    
      TF_ASSIGN_OR_RETURN(Node * arg_node, function_body.graph->AddNode(arg_def));
      return arg_node;
    }
    
    // Add _Retval node that matches newly added `arg_node` and connect `arg_node`
    // to it.
    Status AddMatchingRetvalNode(const FunctionBody& function_body,
                                 const int arg_idx, const DataType& data_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    								Status:             v1.ConditionTrue,
    								LastTransitionTime: *tc.lastScaleTime,
    								Reason:             "ReadyForNewScale",
    								Message:            "recommended size matches current size",
    							},
    							{
    								Type:               autoscalingv2.ScalingActive,
    								Status:             v1.ConditionTrue,
    								LastTransitionTime: *tc.lastScaleTime,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      rewriter.replaceAllUsesWith(uniform_quantize_op->getResult(0),
                                  op->getResult(0));
      return op->getResult(0).getType().cast<TensorType>().clone(
          new_result_quantized_type);
    }
    
    // Matches kernel dimension numbers, ranks of input and output and constant
    // kernel for legalization to TFLite convolution ops.
    LogicalResult MatchConvolutionFormat(stablehlo::ConvolutionOp op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__policy__v1_openapi.json

            "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
            "properties": {
              "matchExpressions": {
                "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

            "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
            "properties": {
              "matchExpressions": {
                "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier_test.go

    			rules := getRules(ipt, kubeServicesChain)
    			if len(rules) <= 0 {
    				t.Errorf("skip loop back ip in kubeservice chain not exist")
    				return
    			}
    			if !rules[0].Jump.Matches("RETURN") || !rules[0].SourceAddress.Matches(test.src) {
    				t.Errorf("rules not match, expect jump: %s, got: %s; expect source address: %s, got: %s", "RETURN", rules[0].Jump.String(), test.src, rules[0].SourceAddress.String())
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    	// selector should match the labels in the template, which is immutable
    	// on its own; therfore, the only way to test selector immutability is
    	// when the new selector is changed but still matches the existing labels.
    	newSelector := getValidGeneratedSelector()
    	newSelector.MatchLabels["foo"] = "bar"
    	validTolerations := []api.Toleration{{
    		Key:      "foo",
    		Operator: api.TolerationOpEqual,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top