- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 27 for selectlist (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
public void test_getAllWebConfigList() { final WebConfigCB cb = new WebConfigCB(); ComponentUtil.register(new WebConfigBhv() { @Override public ListResultBean<WebConfig> selectList(final CBCall<WebConfigCB> cbLambda) { cbLambda.callback(cb); final ListResultBean<WebConfig> list = new ListResultBean<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 35.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
*/ public void storeAllElevateWords(final boolean apply) { deleteAllElevateWord(apply); final List<ElevateWord> list = ComponentUtil.getComponent(ElevateWordBhv.class).selectList(cb -> { cb.query().matchAll(); cb.fetchFirst(ComponentUtil.getFessConfig().getPageElevateWordMaxFetchSizeAsInteger()); }); for (final ElevateWord elevateWord : list) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 22.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
public List<WebConfig> getAllWebConfigList(final boolean withLabelType, final boolean withRoleType, final boolean available, final List<String> idList) { return ComponentUtil.getComponent(WebConfigBhv.class).selectList(cb -> { if (available) { cb.query().setAvailable_Equal(Constants.T); } if (idList != null) { cb.query().setId_InScope(idList); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.5K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
searchLogList.add(searchLog); entityListLambda.accept(searchLogList); } } private static class MockElevateWordBhv extends ElevateWordBhv { public List<ElevateWord> selectList(Consumer<Object> cbLambda) { List<ElevateWord> elevateWordList = new ArrayList<>(); ElevateWord elevateWord = new ElevateWord(); elevateWord.setSuggestWord("test");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
* @return a list of RelatedQuery entities containing all available related queries */ public List<RelatedQuery> getAvailableRelatedQueryList() { return ComponentUtil.getComponent(RelatedQueryBhv.class).selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_Term_Asc(); cb.fetchFirst(ComponentUtil.getFessConfig().getPageRelatedqueryMaxFetchSizeAsInteger()); }); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
assertTrue(result.isPresent()); assertNotNull(stopwordsFile.stopwordsItemList); } // Test selectList method @Test public void test_selectList_normalCase() { loadTestData(); DictionaryFile.PagingList<StopwordsItem> result = stopwordsFile.selectList(0, 2); assertEquals(2, result.size()); assertEquals(1, result.getCurrentPageNumber());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
*/ public List<RelatedContent> getAvailableRelatedContentList() { return ComponentUtil.getComponent(RelatedContentBhv.class).selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_SortOrder_Asc(); cb.query().addOrderBy_Term_Asc();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
return OptionalEntity.of(ProtwordsItem); } } return OptionalEntity.empty(); } @Override public synchronized PagingList<ProtwordsItem> selectList(final int offset, final int size) { if (protwordsItemList == null) { reload(null); } if (offset >= protwordsItemList.size() || offset < 0) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
return OptionalEntity.of(StopwordsItem); } } return OptionalEntity.empty(); } @Override public synchronized PagingList<StopwordsItem> selectList(final int offset, final int size) { if (stopwordsItemList == null) { reload(null); } if (offset >= stopwordsItemList.size() || offset < 0) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 13K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
* * @param offset the starting offset for pagination * @param size the number of items to retrieve * @return a paginated list of dictionary items */ public abstract PagingList<T> selectList(int offset, int size); /** * Retrieves a dictionary item by its ID. * * @param id the item ID * @return an optional containing the item if found */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.2K bytes - Click Count (0)