Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 161 for flavor (0.21 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. src/reflect/value.go

    	flagIndir       flag = 1 << 7
    	flagAddr        flag = 1 << 8
    	flagMethod      flag = 1 << 9
    	flagMethodShift      = 10
    	flagRO          flag = flagStickyRO | flagEmbedRO
    )
    
    func (f flag) kind() Kind {
    	return Kind(f & flagKindMask)
    }
    
    func (f flag) ro() flag {
    	if f&flagRO != 0 {
    		return flagStickyRO
    	}
    	return 0
    }
    
    func (v Value) typ() *abi.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // fallthrough from their incoming to the outgoing edge.
    func entropyScore(n *Node) int64 {
    	score := float64(0)
    
    	if len(n.In) == 0 {
    		score++ // Favor entry nodes
    	} else {
    		score += edgeEntropyScore(n, n.In, 0)
    	}
    
    	if len(n.Out) == 0 {
    		score++ // Favor leaf nodes
    	} else {
    		score += edgeEntropyScore(n, n.Out, n.Flat)
    	}
    
    	return int64(score*float64(n.Cum)) + n.Flat
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Throwables.java

        }
      }
    
      /**
       * Propagates {@code throwable} exactly as-is, if and only if it is an instance of {@link
       * RuntimeException}, {@link Error}, or {@code declaredType}.
       *
       * <p><b>Discouraged</b> in favor of calling {@link #throwIfInstanceOf} and {@link
       * #throwIfUnchecked}.
       *
       * @param throwable the Throwable to possibly propagate
       * @param declaredType the single checked exception type declared by the calling method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top