Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 123 for cook (0.1 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			ref.Kind == "ResourceClaimParameters" {
    			if modifiedParameters.Name == ref.Name {
    				usesParameters = true
    			}
    			return
    		}
    
    		// Need to look for translated parameters.
    		generatedFrom := modifiedParameters.GeneratedFrom
    		if generatedFrom == nil {
    			return
    		}
    		if generatedFrom.APIGroup == ref.APIGroup &&
    			generatedFrom.Kind == ref.Kind &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    	//
    	// TODO: Since prove now derives transitive relations, it
    	// should be sufficient to learn that len(w) <= cap(w) at the
    	// beginning of prove where we look for all len/cap ops.
    	if v.Op == OpSliceLen && r&lt == 0 && ft.caps[v.Args[0].ID] != nil {
    		// len(s) > w implies cap(s) > w
    		// len(s) >= w implies cap(s) >= w
    		// len(s) == w implies cap(s) >= w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // "imagepolicy" is the name of the webhook, and kubernetes.io is the name
      // of the organization.
      // Required.
      optional string name = 1;
    
      // ClientConfig defines how to communicate with the hook.
      // Required
      optional WebhookClientConfig clientConfig = 2;
    
      // Rules describes what operations on what resources/subresources the webhook cares about.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    // Most code today now uses google.golang.org/appengine instead,
    // but not all code has been so updated. When we mostly ignore build tags
    // during "go vendor", we look into "// +build appengine" files and
    // may see these legacy imports. We drop them so that the module
    // search does not look for modules to try to satisfy them.
    func scanDir(modroot string, dir string, tags map[string]bool) (imports_, testImports []string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                } else {
                    DeprecationLogger.deprecateBehaviour("Resolution of the configuration " + identityPath.toString() + " was attempted from a context different than the project context. Have a look at the documentation to understand why this is a problem and how it can be resolved.")
                        .willBecomeAnErrorInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  6. pkg/apis/certificates/validation/validation_test.go

    			bundle: &capi.ClusterTrustBundle{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "look-ma-no-prefix",
    				},
    				Spec: capi.ClusterTrustBundleSpec{
    					SignerName:  "k8s.io/foo",
    					TrustBundle: goodCert1Block,
    				},
    			},
    			wantErrors: field.ErrorList{
    				field.Invalid(field.NewPath("metadata", "name"), "look-ma-no-prefix", "ClusterTrustBundle for signerName k8s.io/foo must be named with prefix k8s.io:foo:"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        const Node& n,
        const absl::flat_hash_set<const Node*>& runtime_const_nodes) {
      if (n.type_string() == "GuaranteeConst") {
        // If the current node is itself a cast-to-const, no need
        // to look at the incoming edges.
        return true;
      }
    
      bool all_parents_const = true;
      bool atleast_one_non_control_edge = false;
      for (const Edge* in : n.in_edges()) {
        atleast_one_non_control_edge =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	// Plan 9 variables.
    	Plan9Magic  uint32
    	Plan9_64Bit bool
    
    	Adddynrel func(*Target, *loader.Loader, *ArchSyms, loader.Sym, loader.Reloc, int) bool
    	Archinit  func(*Link)
    	// Archreloc is an arch-specific hook that assists in relocation processing
    	// (invoked by 'relocsym'); it handles target-specific relocation tasks.
    	// Here "rel" is the current relocation being examined, "sym" is the symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// of the organization.
    	// Required.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    
    	// ClientConfig defines how to communicate with the hook.
    	// Required
    	ClientConfig WebhookClientConfig `json:"clientConfig" protobuf:"bytes,2,opt,name=clientConfig"`
    
    	// Rules describes what operations on what resources/subresources the webhook cares about.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // equally performant.  Some clustering decision are likely to improve
      // performance much more than others, and we cannot order contractions on this
      // cost function, nor can we look at global information while deciding on
      // individual edges to contract.  Instead, we will make decisions on these
      // important edges then make decisions on all other edges, causing the highest
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top