Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for flavor (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    These are different things.
    The Android cache is internal to certain tasks in the Android plugin, and will eventually be removed in favor of native Gradle support.
    
    == Why use the build cache?
    
    The build cache can _significantly_ improve build performance for Android projects, in many cases by 30-40%.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. pkg/proxy/endpointslicecache.go

    			ready, serving, terminating, zoneHints)
    
    		// This logic ensures we're deduplicating potential overlapping endpoints
    		// isLocal should not vary between matching endpoints, but if it does, we
    		// favor a true value here if it exists.
    		if _, exists := endpointSet[endpointInfo.String()]; !exists || isLocal {
    			endpointSet[endpointInfo.String()] = cache.makeEndpointInfo(endpointInfo, svcPortName)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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. src/go/types/typexpr.go

    	// TypeName and we also want a type (in which case we might detect
    	// a cycle which needs to be reported). Otherwise we can skip the
    	// call and avoid a possible cycle error in favor of the more
    	// informative "not a type/value" error that this function's caller
    	// will issue (see go.dev/issue/25790).
    	typ := obj.Type()
    	if typ == nil || gotType && wantType {
    		check.objDecl(obj, def)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top