Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for flavor (0.94 sec)

  1. internal/auth/credentials.go

    	Name         string                 `xml:"-" json:"name,omitempty"`
    	Description  string                 `xml:"-" json:"description,omitempty"`
    
    	// Deprecated: In favor of Description - when reading credentials from
    	// storage the value of this field is placed in the Description field above
    	// if the existing Description from storage is empty.
    	Comment string `xml:"-" json:"comment,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/scheduler/util/assumecache/assume_cache.go

    //
    // Storing an object with the same version is supported
    // by the assume cache, but suffers from a race: if an
    // update is received via the informer while such an
    // object is assumed, it gets dropped in favor of the
    // newer object from the apiserver.
    //
    // Only assuming objects that were returned by an apiserver
    // operation (Update, Patch) is safe.
    func (c *AssumeCache) Assume(obj interface{}) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                                            + ") from repository " + repository.getId() + " (" + repository.getUrl()
                                            + ") in favor of local copy");
                        }
                    } else {
                        update = updateCheckManager.isUpdateRequired(metadata, repository, file);
                    }
    
                    if (update) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/nilcheck.go

    				if f.fe.Debug_checknil() && v.Pos.Line() > 1 {
    					f.Warnl(v.Pos, "removed nil check")
    				}
    				// For bug 33724, policy is that we might choose to bump an existing position
    				// off the faulting load/store in favor of the one from the nil check.
    
    				// Iteration order means that first nilcheck in the chain wins, others
    				// are bumped into the ordinary statement preservation algorithm.
    				u := b.Values[unnecessary.get(v.Args[0].ID)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

            getComponent().finalizeValue();
            artifactsOverridden = false;
    
            updateModuleDescriptorArtifact();
        }
    
        // TODO: This method should be removed in favor of lazily adding artifacts to the publication state.
        // This is currently blocked by Signing eagerly realizing the publication artifacts.
        private void populateFromComponent() {
            if (populated) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    func (m *kubeGenericRuntimeManager) generatePodSandboxConfig(pod *v1.Pod, attempt uint32) (*runtimeapi.PodSandboxConfig, error) {
    	// TODO: deprecating podsandbox resource requirements in favor of the pod level cgroup
    	// Refer https://github.com/kubernetes/kubernetes/issues/29871
    	podUID := string(pod.UID)
    	podSandboxConfig := &runtimeapi.PodSandboxConfig{
    		Metadata: &runtimeapi.PodSandboxMetadata{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

            getComponent().finalizeValue();
            artifactsOverridden = false;
    
            updateModuleDescriptorArtifact();
        }
    
        // TODO: This method should be removed in favor of lazily adding artifacts to the publication state.
        // This is currently blocked by Signing eagerly realizing the publication artifacts.
        private void populateFromComponent() {
            if (populated) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/flag/flag.go

    	import "flag"
    	var nFlag = flag.Int("n", 1234, "help message for flag n")
    
    If you like, you can bind the flag to a variable using the Var() functions.
    
    	var flagvar int
    	func init() {
    		flag.IntVar(&flagvar, "flagname", 1234, "help message for flagname")
    	}
    
    Or you can create custom flags that satisfy the Value interface (with
    pointer receivers) and couple them to flag parsing by
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    }
    
    // IngressClassSpec provides information about the class of an Ingress.
    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1beta1/generated.proto

    }
    
    // IngressClassSpec provides information about the class of an Ingress.
    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top