Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for oldTable (1.45 sec)

  1. src/main/java/org/codelibs/core/collection/ArrayMap.java

        /**
         * Ensures capacity when the size exceeds the threshold.
         */
        protected void ensureCapacity() {
            if (size >= threshold) {
                final Entry<K, V>[] oldTable = listTable;
                final int newCapacity = oldTable.length * 2 + 1;
                @SuppressWarnings("unchecked")
                final Entry<K, V>[] newMapTable = new Entry[newCapacity];
                @SuppressWarnings("unchecked")
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 20.1K bytes
    - Viewed (0)
Back to top