- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for NewList (0.03 sec)
-
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
mapping.setElevateWordId(elevateWordId); mapping.setLabelTypeId(id); newList.add(mapping); } } list.removeAll(matchedList); elevateWordToLabelBhv.batchInsert(newList, op -> { op.setRefreshPolicy(Constants.TRUE); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0) -
internal/lru/lru.go
} // Init initializes or clears list l. func (l *LruList[K, V]) Init() *LruList[K, V] { l.root.next = &l.root l.root.prev = &l.root l.len = 0 return l } // NewList returns an initialized list. func NewList[K comparable, V any]() *LruList[K, V] { return new(LruList[K, V]).Init() } // Length returns the number of elements of list l. // The complexity is O(1).
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Apr 25 08:22:26 UTC 2025 - 12.5K bytes - Viewed (0)