HomeSort by relevance Sort by last modified time
    Searched refs:concurrencyLevel (Results 1 - 6 of 6) sorted by null

  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java 146 int concurrencyLevel = UNSET_CONCURRENCY_LEVEL;
182 * @throws IllegalArgumentException if concurrencyLevel < 0
184 public Builder concurrencyLevel(int concurrencyLevel) {
185 if (this.concurrencyLevel != UNSET_CONCURRENCY_LEVEL) {
187 "concurrency level was already set to " + this.concurrencyLevel);
189 if (concurrencyLevel <= 0) {
192 this.concurrencyLevel = concurrencyLevel;
270 return (concurrencyLevel == UNSET_CONCURRENCY_LEVEL
    [all...]
MapMaker.java 48 * .concurrencyLevel(32)
141 * @throws IllegalArgumentException if {@code concurrencyLevel} is
145 @GwtIncompatible("java.util.concurrent.ConcurrentHashMap concurrencyLevel")
146 public MapMaker concurrencyLevel(int concurrencyLevel) {
147 builder.concurrencyLevel(concurrencyLevel);
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 44 * the optional <tt>concurrencyLevel</tt> constructor argument
576 * @param concurrencyLevel the estimated number of concurrently
580 * negative or the load factor or concurrencyLevel are
584 float loadFactor, int concurrencyLevel) {
585 if (!(loadFactor > 0) || initialCapacity < 0 || concurrencyLevel <= 0)
588 if (concurrencyLevel > MAX_SEGMENTS)
589 concurrencyLevel = MAX_SEGMENTS;
594 while (ssize < concurrencyLevel) {
617 * and with default load factor (0.75) and concurrencyLevel (16).
630 * load factor (0.75) and concurrencyLevel (16)
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 1829 milliseconds