Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 249 for pcount (0.12 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

                V entryValue = e.getValue();
    
                if (entryValue == null) {
                  ++modCount;
                  setValue(e, value);
                  newCount = this.count; // count remains unchanged
                  this.count = newCount; // write-volatile
                  return null;
                } else if (onlyIfAbsent) {
                  // Mimic
                  // "if (!map.containsKey(key)) ...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            run(":resolveArtifacts")
    
            then:
            output.count("transform") == 3
            output.count("transform external test-1.2.jar") == 1
            output.count("transform local test2-1.5.thing using [test-1.2.jar.external]") == 1
            output.count("transform local test3-1.5.thing using [test-1.2.jar.external]") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            assertTransformed("thing1-1.2.jar", "thing2-1.2.jar")
            output.count("result = [thing1-1.2.jar.green, thing2-1.2.jar.green]") == 5
    
            when:
            configurationCacheRun(":resolve0", ":resolve1", ":resolve2", ":resolve3", ":resolve4")
    
            then:
            fixture.assertStateLoaded()
            assertTransformed()
            output.count("result = [thing1-1.2.jar.green, thing2-1.2.jar.green]") == 5
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  4. src/runtime/map.go

    	// the actual copying of the hash table data is done incrementally
    	// by growWork() and evacuate().
    }
    
    // overLoadFactor reports whether count items placed in 1<<B buckets is over loadFactor.
    func overLoadFactor(count int, B uint8) bool {
    	return count > abi.MapBucketCount && uintptr(count) > loadFactorNum*(bucketShift(B)/loadFactorDen)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

                V entryValue = e.getValue();
    
                if (entryValue == null) {
                  ++modCount;
                  setValue(e, value);
                  newCount = this.count; // count remains unchanged
                  this.count = newCount; // write-volatile
                  return null;
                } else if (onlyIfAbsent) {
                  // Mimic
                  // "if (!map.containsKey(key)) ...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    // this ratio and multiplying it by heapInUse at the end of the last GC, which
    // allows us to account for this additional fragmentation. Note that this
    // procedure makes the assumption that the degree of fragmentation won't change
    // dramatically over the next GC cycle. Overestimating the amount of
    // fragmentation simply results in higher memory use, which will be accounted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    // LookupSID retrieves a security identifier SID for the account
    // and the name of the domain on which the account was found.
    // System specify target computer to search.
    func LookupSID(system, account string) (sid *SID, domain string, accType uint32, err error) {
    	if len(account) == 0 {
    		return nil, "", 0, syscall.EINVAL
    	}
    	acc, e := UTF16PtrFromString(account)
    	if e != nil {
    		return nil, "", 0, e
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/reflect/type.go

    	// methods will need to be sorted like the compiler does.
    	// TODO(sbinet): Once we allow non-exported methods, we will
    	// need to compute xcount as the number of exported methods.
    	ut.Mcount = uint16(len(methods))
    	ut.Xcount = ut.Mcount
    	ut.Moff = uint32(unsafe.Sizeof(uncommonType{}))
    
    	if len(fs) > 0 {
    		repr = append(repr, ' ')
    	}
    	repr = append(repr, '}')
    	hash = fnv1(hash, '}')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    			possibleLimitingReason = "ScaleUpLimit"
    			possibleLimitingMessage = "the desired replica count is increasing faster than the maximum scale rate"
    		} else {
    			possibleLimitingReason = "TooManyReplicas"
    			possibleLimitingMessage = "the desired replica count is more than the maximum replica count"
    		}
    		if args.DesiredReplicas > maximumAllowedReplicas {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/testing/testing.go

    		c.lastRaceErrors.Store(c.parent.checkRaces())
    	}
    }
    
    // checkRaces checks whether the global count of data race errors has increased
    // since c's count was last reset.
    //
    // If so, it marks c as having failed due to those races (logging an error for
    // the first such race), and updates the race counts for the parents of c so
    // that if they are currently suspended (such as in a call to T.Run) they will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top