Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 568 for pruned (0.14 sec)

  1. src/cmd/go/testdata/script/mod_graph_version.txt

    # For this module, Go 1.17 prunes out a (transitive and otherwise-irrelevant)
    # requirement on a retracted higher version of a dependency.
    # However, when Go 1.16 reads the same requirements from the go.mod file,
    # it does not prune out that requirement, and selects the retracted version.
    #
    # The Go 1.16 module graph looks like:
    #
    # m ---- lazy v0.1.0 ---- requireincompatible v0.1.0 ---- incompatible v2.0.0+incompatible
    # |        |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. releasenotes/notes/46483.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 15:14:04 UTC 2023
    - 175 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/visitor.cc

      SymbolTableCollection symbol_table;
      OpBuilder builder(module.getContext());
    
      OwningOpRef<ModuleOp> pruned =
          builder.create<ModuleOp>(module->getLoc());
      (*pruned)->setAttrs(module->getAttrs());
      builder.setInsertionPointToEnd(pruned->getBody());
    
      llvm::SmallDenseSet<func::FuncOp> added;
      for (const llvm::StringRef function_name : function_names) {
        auto func =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/validation.go

    				if remainingCost < 0 {
    					return allErrs, nil, remainingCost
    				}
    			}
    		} else {
    			// check whether default is pruned
    			if requirePrunedDefaults {
    				pruned := runtime.DeepCopyJSONValue(s.Default.Object)
    				pruning.Prune(pruned, s, s.XEmbeddedResource)
    				if !reflect.DeepEqual(pruned, s.Default.Object) {
    					allErrs = append(allErrs, field.Invalid(pth.Child("default"), s.Default.Object, "must not have unknown fields"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/pruning_function_input_as_output.mlir

      // CHECK: %[[EXP:.*]] = "tfl.exp"
      %3 = "tfl.exp"(%2) : (tensor<4xf32>) -> tensor<4xf32> loc("exp")
      // tfl.neg should be pruned
      // CHECK-NOT: "tfl.neg"
      %4 = "tfl.neg"(%3) : (tensor<4xf32>) -> tensor<4xf32> loc("neg")
      // CHECK: return %[[ARG]], %[[DIV]], %[[EXP]]
      func.return %4 : tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/uninstall.go

    	manifestsPath string
    	// verbose generates verbose output.
    	verbose bool
    }
    
    const (
    	AllResourcesRemovedWarning = "All Istio resources will be pruned from the cluster\n"
    	NoResourcesRemovedWarning  = "No resources will be pruned from the cluster. Please double check the input configs\n"
    	GatewaysRemovedWarning     = "You are about to remove the following gateways: %s." +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/pruning.mlir

      // CHECK: %[[EXP:.*]] = "tfl.exp"
      %4 = "tfl.exp"(%3) : (tensor<4xf32>) -> tensor<4xf32> loc("exp")
      // tfl.neg should be pruned
      // CHECK-NOT: "tfl.neg"
      %5 = "tfl.neg"(%4) : (tensor<4xf32>) -> tensor<4xf32> loc("neg")
      // CHECK: return %[[MUL]], %[[EXP]], %[[DIV]]
      func.return %5 : tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. operator/pkg/metrics/monitoring.go

    		"resource_deletion_total",
    		"Number of resources deleted by the operator",
    	)
    
    	// ResourcePruneTotal indicates the resources pruned as a result of update.
    	ResourcePruneTotal = monitoring.NewSum(
    		"resource_prune_total",
    		"Number of resources pruned by the operator",
    	)
    
    	// ManifestPatchErrorTotal counts the total number of K8S patch errors.
    	ManifestPatchErrorTotal = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/common.go

    	// OwningResourceNotPruned indicates that the resource should not be pruned during reconciliation cycles,
    	// note this will not prevent the resource from being deleted if the owning resource is deleted.
    	OwningResourceNotPruned = MetadataNamespace + "/owning-resource-not-pruned"
    	// operatorLabelStr indicates Istio operator is managing this resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_issue60490.txt

    # Regression test for https://go.dev/issue/60490: 'go get' should not cause an
    # infinite loop for cycles introduced in the pruned module graph.
    
    go get example.net/c@v0.1.0
    
    -- go.mod --
    module example
    
    go 1.19
    
    require (
    	example.net/a v0.1.0
    	example.net/b v0.1.0
    )
    
    replace (
    	example.net/a v0.1.0 => ./a1
    	example.net/a v0.2.0 => ./a2
    	example.net/b v0.1.0 => ./b1
    	example.net/b v0.2.0 => ./b2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 16:18:15 UTC 2023
    - 752 bytes
    - Viewed (0)
Back to top