Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for maybeSplit (0.24 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                    index = -index - 1;
                    entries.add(index, entry);
                }
    
                entry.dataBlock = pos;
                store.write(this);
    
                maybeSplit();
            }
    
            private void maybeSplit() throws Exception {
                if (entries.size() > maxChildIndexEntries) {
                    int splitPos = entries.size() / 2;
                    IndexEntry splitEntry = entries.remove(splitPos);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top