Searched refs:concurrencyLevel (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleObjectCache.java47 public LocaleObjectCache(int initialCapacity, float loadFactor, int concurrencyLevel) { argument
48 map = new ConcurrentHashMap<>(initialCapacity, loadFactor, concurrencyLevel);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentHashMap.java70 * the optional <tt>concurrencyLevel</tt> constructor argument
793 * @param concurrencyLevel the estimated number of concurrently
797 * negative or the load factor or concurrencyLevel are
802 float loadFactor, int concurrencyLevel) {
803 if (!(loadFactor > 0) || initialCapacity < 0 || concurrencyLevel <= 0)
805 if (concurrencyLevel > MAX_SEGMENTS)
806 concurrencyLevel = MAX_SEGMENTS;
810 while (ssize < concurrencyLevel) {
835 * and load factor and with the default concurrencyLevel (16).
853 * and with default load factor (0.75) and concurrencyLevel (1
801 ConcurrentHashMap(int initialCapacity, float loadFactor, int concurrencyLevel) argument
[all...]

Completed in 52 milliseconds