- Sort Score
- Num 10 results
- Language All
Results 71 - 74 of 74 for selectFirst (0.06 seconds)
-
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) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 15.9K bytes - Click Count (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()); }); }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
final List<UserInfo> updateList = new ArrayList<>(); final UserInfoBhv userInfoBhv = ComponentUtil.getComponent(UserInfoBhv.class); userInfoBhv.selectList(cb -> { cb.query().setId_InScope(userInfoMap.keySet()); cb.fetchFirst(userInfoMap.size()); }).forEach(userInfo -> { final String code = userInfo.getId();
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
final List<String> idList = new ArrayList<>(); final ThumbnailQueueBhv thumbnailQueueBhv = ComponentUtil.getComponent(ThumbnailQueueBhv.class); thumbnailQueueBhv.selectList(cb -> { if (StringUtil.isBlank(fessConfig.getSchedulerTargetName())) { cb.query().setTarget_Equal(Constants.DEFAULT_JOB_TARGET); } else {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 27K bytes - Click Count (0)