Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 568 for pruned (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

    		t.Errorf("Expected 'unspecified' field to be pruned, but it was not")
    	}
    	if _, found, _ := unstructured.NestedFieldNoCopy(foo.Object, "alpha"); !found {
    		t.Errorf("Expected specified 'alpha' field to stay, but it was pruned")
    	}
    	if _, found, _ := unstructured.NestedFieldNoCopy(foo.Object, "beta"); !found {
    		t.Errorf("Expected specified 'beta' field to stay, but it was pruned")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/algorithm_test.go

    			"preserving.metadata.unspecified",
    			"pruned.metadata.unspecified",
    		}},
    		{name: "x-kubernetes-embedded-resource, with includeRoot=true", json: `
    {
      "apiVersion": "foo/v1",
      "kind": "Foo",
      "metadata": {
        "name": "instance",
        "unspecified": "bar"
      },
      "unspecified":"bar",
      "pruned": {
        "apiVersion": "foo/v1",
        "kind": "Foo",
        "unspecified": "bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 02:09:41 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_identity_pruning.mlir

    // RUN: tf-opt %s -tf-tpu-identity-pruning | FileCheck %s --dump-input=always
    
    // Tests Identity op in cluster is pruned away.
    
    // CHECK-LABEL: func @testIdentity
    // CHECK-SAME: ([[ARG0:%.*]]: tensor<i32>)
    func.func @testIdentity(%arg0: tensor<i32>) {
      // CHECK-NOT:  "tf.Identity"
      // CHECK:      "tf_device.cluster"
      // CHECK-NEXT: tf_device.return [[ARG0]]
      %0 = "tf_device.cluster"() ({
        %1 = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/object_count_tracker_test.go

    	fakeClock.SetTime(now.Add(-61 * time.Minute))
    	tracker.Set("k1", 61)
    	fakeClock.SetTime(now.Add(-60 * time.Minute))
    	tracker.Set("k2", 60)
    	// we are going to prune keys that are stale for >= 1h
    	// so the above keys are expected to be pruned and the
    	// key below should not be pruned.
    	mostRecent := now.Add(-59 * time.Minute)
    	fakeClock.SetTime(mostRecent)
    	tracker.Set("k3", 59)
    	expected := map[string]*timestampedCount{
    		"k3": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 17 19:36:14 UTC 2021
    - 3.4K bytes
    - Viewed (0)
Back to top