Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 242 for covers (0.16 sec)

  1. src/cmd/compile/internal/ssa/writebarrier.go

    		if !(f.ABIDefault == f.ABI1 && len(f.Config.intParamRegs) >= 3) {
    			// We don't need to do this if the calls we're going to do take
    			// all their arguments in registers.
    			// 3 is the magic number because it covers wbZero, wbMove, cgoCheckMemmove.
    		copyLoop:
    			for _, w := range stores {
    				if w.Op == OpMoveWB {
    					val := w.Args[1]
    					if isVolatile(val) {
    						for _, c := range volatiles {
    							if val == c.src {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[understanding_dependency_resolution]]
    = Understanding dependency resolution
    
    This chapter covers the way dependency resolution works _inside_ Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  3. hack/update-codegen.sh

    #
    # The <VALUE> depends on context:
    #     on types:
    #       true:  always generate a defaulter for this type
    #       false: never generate a defaulter for this type
    #     on functions:
    #       covers: if the function name matches SetDefault_NAME, instructs
    #               the generator not to recurse
    #     on packages:
    #       FIELDNAME: any object with a field of this name is a candidate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	}
    	ci := newCacheInterval(w.startIndex+first, w.endIndex, indexerFunc, w.indexValidator, w.RWMutex.RLocker())
    	return ci, nil
    }
    
    // getIntervalFromStoreLocked returns a watchCacheInterval
    // that covers the entire storage state.
    // This function assumes to be called under the watchCache lock.
    func (w *watchCache) getIntervalFromStoreLocked(key string, matchesSingle bool) (*watchCacheInterval, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSet.java

         * log n) on average.
         *
         * <p>The online hash flooding detecting in RegularSetBuilderImpl.add can detect e.g. many
         * exactly matching hash codes, which would cause construction to take O(n^2), but can't detect
         * e.g. hash codes adversarially designed to go into ascending table locations, which keeps
         * construction O(n) (as desired) but then can have O(n) queries later.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    The rest of the user manual contain build script excerpts that demonstrate both the Groovy DSL and the Kotlin DSL.
    This is the best place where to find how to do this and what with each DSL ; and it covers all Gradle features from <<plugins.adoc#using_plugins,using plugins>> to <<dependency_constraints.adoc#dependency-constraints,customizing the dependency resolution behavior>>.
    ====
    
    == Before you start migrating
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    // limitations under the License.
    
    [[resolution_rules]]
    = Customizing resolution of a dependency directly
    
    This section covers mechanisms Gradle offers to directly influence the behavior of the dependency resolution engine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/cache.go

    // repository path resolution in Lookup if the result is
    // already cached on local disk.
    func GoMod(ctx context.Context, path, rev string) ([]byte, error) {
    	// Convert commit hash to pseudo-version
    	// to increase cache hit rate.
    	if !gover.ModIsValid(path, rev) {
    		if _, info, err := readDiskStat(ctx, path, rev); err == nil {
    			rev = info.Version
    		} else {
    			if errors.Is(err, statCacheErr) {
    				return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    TIP: For a hands-on approach to learning how to use the build cache, start with reading through the <<build_cache_use_cases.adoc#use_cases_cache,use cases for the build cache>> and the follow up sections.
    It covers the different scenarios that caching can improve and has detailed discussions of the different caveats you need to be aware of when enabling caching for a build.
    
    [[sec:build_cache_enable]]
    == Enable the Build Cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/graph_builder.go

    			// add those potentially invalid dependents to the attemptToDelete queue.
    			// if their owners are still solid the attemptToDelete will be a no-op.
    			// this covers the bad child -> good parent observation sequence.
    			// the good parent -> bad child observation sequence is handled in addDependentToOwners
    			for _, dep := range potentiallyInvalidDependents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top