Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 359 for pruned (0.1 sec)

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

    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    	example.net/deleted v0.1.0
    	example.net/deleted v0.1.0 // redundant
    	example.net/lazy v0.1.0
    )
    -- go.mod.tidy --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

    			}
    			if !reflect.DeepEqual(pruned, tt.expectedPruned) {
    				t.Errorf("expected pruned:\n\t%v\ngot:\n\t%v\n", strings.Join(tt.expectedPruned, "\n\t"), strings.Join(pruned, "\n\t"))
    			}
    
    			// now check that pruned is empty when TrackUnknownFieldPaths is false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencySuccessorsOnlyNodeSet.java

                    }
                }
            }
        }
    
        @Override
        public Node.DependenciesState getState(Node node) {
            if (!pruned) {
                // See the comment in addDependency() above
                discardCompletedNodes(node);
                pruned = true;
            }
            if (nodeCannotStart) {
                // A dependency did not complete successfully
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # 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:
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/edit.go

    	if fromPruning == pruned {
    		dq.pruned = reason
    		if !dq.unpruned.isDisqualified() {
    			// Since the pruned graph of m is a subgraph of the unpruned graph, if it
    			// is disqualified due to something in the pruned graph, it is certainly
    			// disqualified in the unpruned graph from the same reason.
    			dq.unpruned = reason
    		}
    	} else {
    		dq.unpruned = reason
    		if dq.pruned.isDisqualified() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_added.txt

    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    	example.net/added v0.1.0
    	example.net/lazy v0.1.0
    )
    -- go.mod.tidy --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/added v0.1.0 => ./a1
    	example.net/added v0.2.0 => ./a2
    	example.net/added v0.3.0 => ./a1
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require example.net/lazy v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top