Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 186 for pruned (4.16 sec)

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

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	t.Logf("Creating CR and expecting defaulted, embedded objects, with the unknown ObjectMeta fields pruned")
    	fooClient := dynamicClient.Resource(schema.GroupVersionResource{Group: crd.Spec.Group, Version: crd.Spec.Versions[0].Name, Resource: crd.Spec.Names.Plural})
    
    	tests := []struct {
    		path  []string
    		value interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    				t.Fatal(err)
    			}
    			if _, err := client.Create(context.TODO(), fixture, metav1.CreateOptions{}); err != nil {
    				t.Fatal(err)
    			}
    
    			// verify that the right, pruned version is in storage
    			obj, err := ctc.etcdObjectReader.GetStoredCustomResource(ns, name)
    			if err != nil {
    				t.Fatal(err)
    			}
    			verifyMultiVersionObject(t, "v1beta1", obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    // the islands being merged. Unused results outside of the merged island to be
    // formed are pruned. If the child island inner ops consume the parent island
    // control result, the child island inner ops will have that respective control
    // input pruned. Results of the parent island that are consumed by the child
    // island are replaced by the respective inner ops result from the parent
    // island.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. istioctl/pkg/tag/generate_test.go

    			}
    			wh := vwhObject.(*admitv1.ValidatingWebhookConfiguration)
    
    			if tc.userManaged {
    				// User created webhooks should not have operator labels, otherwise will be pruned.
    				_, ok := wh.GetLabels()[operatorManaged]
    				assert.Equal(t, ok, false)
    			}
    
    			for _, webhook := range wh.Webhooks {
    				validationWhConf := webhook.ClientConfig
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

        return !is_stateless.getValue();
      }
      return false;
    }
    
    // Add control dependencies from stateful control-flow ops to graph fetch op.
    // This is needed to avoid that such control-flow ops get pruned because of a
    // bug in common runtime (see b/185483669).
    void AddStatefulControlFlowDependencies(tf_executor::GraphOp graph_op) {
      llvm::SmallDenseSet<Value, 8> graph_fetches;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/build.go

    		m := module.Version{Path: path, Version: vers}
    		return moduleInfo(ctx, nil, m, 0, nil)
    	}
    
    	rs := LoadModFile(ctx)
    
    	var (
    		v  string
    		ok bool
    	)
    	if rs.pruning == pruned {
    		v, ok = rs.rootSelected(path)
    	}
    	if !ok {
    		mg, err := rs.Graph(ctx)
    		if err != nil {
    			base.Fatal(err)
    		}
    		v = mg.Selected(path)
    	}
    
    	if v == "none" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/validtype.go

    		// No cycle was found. Check the RHS of t.
    		// Every type added to nest is also added to path; thus every type that is in nest
    		// must also be in path (invariant). But not every type in path is in nest, since
    		// nest may be pruned (see below, *TypeParam case).
    		if !check.validType0(pos, t.Origin().fromRHS, append(nest, t), append(path, t)) {
    			return false
    		}
    
    		// see TODO above
    		// check.valids.add(t) // t is valid
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/go/types/validtype.go

    		// No cycle was found. Check the RHS of t.
    		// Every type added to nest is also added to path; thus every type that is in nest
    		// must also be in path (invariant). But not every type in path is in nest, since
    		// nest may be pruned (see below, *TypeParam case).
    		if !check.validType0(pos, t.Origin().fromRHS, append(nest, t), append(path, t)) {
    			return false
    		}
    
    		// see TODO above
    		// check.valids.add(t) // t is valid
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/link.go

    	// can be used through a custom interface), so ReflectMethod may be
    	// set in some cases when the reflect package is not called.
    	//
    	// Used by the linker to determine what methods can be pruned.
    	AttrReflectMethod
    
    	// Local means make the symbol local even when compiling Go code to reference Go
    	// symbols in other shared libraries, as in this mode symbols are global by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/download.go

    	//
    	// We also allow upgrades if in a workspace because in workspace mode
    	// with no arguments we download the module pattern "all",
    	// which may include dependencies that are normally pruned out
    	// of the individual modules in the workspace.
    	if haveExplicitArgs || modload.WorkFilePath() != "" {
    		var sw toolchain.Switcher
    		// Add errors to the Switcher in deterministic order so that they will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top