- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for tableGet (0.07 sec)
-
android/guava/src/com/google/common/collect/CompactHashMap.java
int tableIndex = hash & mask; int next = CompactHashing.tableGet(requireTable(), tableIndex); if (next == UNSET) { // uninitialized bucket if (newSize > mask) { // Resize and add new entry mask = resizeTable(mask, CompactHashing.newCapacity(mask), hash, newEntryIndex); } else { CompactHashing.tableSet(requireTable(), tableIndex, newEntryIndex + 1); } } else {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 35.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/StandardTable.java
// Views /** * Abstract set whose {@code isEmpty()} returns whether the table is empty and whose {@code * clear()} clears all table mappings. */ @WeakOuter private abstract class TableSet<T> extends ImprovedAbstractSet<T> { @Override public boolean isEmpty() { return backingMap.isEmpty(); } @Override public void clear() { backingMap.clear(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 30.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
private static final Logger logger = LogManager.getLogger(ViewHelper.class); /** Request attribute key for screen width */ protected static final String SCREEN_WIDTH = "screen_width"; /** Tablet width threshold for responsive design */ protected static final int TABLET_WIDTH = 768; /** HTTP header name for content disposition */ protected static final String CONTENT_DISPOSITION = "Content-Disposition";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)