- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 82 for selectList (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsSearchLogBhv.java
return SearchLog.class; } @Override protected Class<SearchLogCB> typeOfHandlingConditionBean() { return SearchLogCB.class; } public ListResultBean<SearchLog> selectList(CBCall<SearchLogCB> cbLambda) { return facadeSelectList(createCB(cbLambda)); } public PagingResultBean<SearchLog> selectPage(CBCall<SearchLogCB> cbLambda) { // #pending same?
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileConfigBhv.java
return FileConfig.class; } @Override protected Class<FileConfigCB> typeOfHandlingConditionBean() { return FileConfigCB.class; } public ListResultBean<FileConfig> selectList(CBCall<FileConfigCB> cbLambda) { return facadeSelectList(createCB(cbLambda)); } public PagingResultBean<FileConfig> selectPage(CBCall<FileConfigCB> cbLambda) { // #pending same?
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (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();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (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) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
return OptionalEntity.of(kuromojiItem); } } return OptionalEntity.empty(); } @Override public synchronized PagingList<KuromojiItem> selectList(final int offset, final int size) { if (kuromojiItemList == null) { reload(null); } if (offset >= kuromojiItemList.size() || offset < 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (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) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
return OptionalEntity.of(stemmerOverrideItem); } } return OptionalEntity.empty(); } @Override public synchronized PagingList<StemmerOverrideItem> selectList(final int offset, final int size) { if (stemmerOverrideItemList == null) { reload(null); } if (offset >= stemmerOverrideItemList.size() || offset < 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
return OptionalEntity.of(synonymItem); } } return OptionalEntity.empty(); } @Override public synchronized PagingList<SynonymItem> selectList(final int offset, final int size) { if (synonymItemList == null) { reload(null); } if (offset >= synonymItemList.size() || offset < 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
* @return List of boost document rules that are currently available */ protected List<BoostDocumentRule> getAvailableBoostDocumentRuleList() { return ComponentUtil.getComponent(BoostDocumentRuleBhv.class).selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_SortOrder_Asc(); cb.fetchFirst(ComponentUtil.getFessConfig().getPageDocboostMaxFetchSizeAsInteger()); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0)