- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 28 for fetchFirst (0.23 sec)
-
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
} if (activeSessionId != null) { cf.setSessionId_NotEqual(activeSessionId); } }); cb.fetchFirst(fessConfig.getPageCrawlingInfoMaxFetchSizeAsInteger()); cb.specify().columnId(); }); if (!crawlingInfoList.isEmpty()) { final List<String> crawlingInfoIdList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
public List<FileAuthentication> getFileAuthenticationList(final String fileConfigId) { return fileAuthenticationBhv.selectList(cb -> { cb.query().setFileConfigId_Equal(fileConfigId); cb.fetchFirst(fessConfig.getPageFileAuthMaxFetchSizeAsInteger()); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
return ComponentUtil.getComponent(RelatedQueryBhv.class).selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_Term_Asc(); cb.fetchFirst(ComponentUtil.getFessConfig().getPageRelatedqueryMaxFetchSizeAsInteger()); }); } @Override public int load() { final Map<String, Map<String, String[]>> relatedQueryMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
public List<RelatedContent> getAvailableRelatedContentList() { return relatedContentBhv.selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_Term_Asc(); cb.fetchFirst(fessConfig.getPageDocboostMaxFetchSizeAsInteger()); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWord.java
cb.query().setId_InScope(labelIdList); cb.query().addOrderBy_SortOrder_Asc(); cb.fetchFirst(fessConfig.getPageLabeltypeMaxFetchSizeAsInteger()); }); } } } return labelTypeList; } public String[] getLabelTypeValues() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
return pathMappingBhv.selectList(cb -> { cb.query().addOrderBy_SortOrder_Asc(); cb.query().setProcessType_InScope(processTypeList); cb.fetchFirst(fessConfig.getPagePathMappingMaxFetchSizeAsInteger()); }); } /** * Sets up list condition for path mapping search. * * @param cb the condition bean
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
*/ public List<WebAuthentication> getWebAuthenticationList(final String webConfigId) { return webAuthenticationBhv.selectList(cb -> { cb.query().setWebConfigId_Equal(webConfigId); cb.fetchFirst(fessConfig.getPageWebAuthMaxFetchSizeAsInteger()); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
*/ public List<KeyMatch> getAvailableKeyMatchList() { return ComponentUtil.getComponent(KeyMatchBhv.class).selectList(cb -> { cb.query().matchAll(); cb.fetchFirst(ComponentUtil.getFessConfig().getPageKeymatchMaxFetchSizeAsInteger()); }); } /** * Loads KeyMatch settings from the database and builds a query map. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
cachedPathMappingList = pathMappingBhv.selectList(cb -> { cb.query().addOrderBy_SortOrder_Asc(); cb.query().setProcessType_InScope(ptList); cb.fetchFirst(ComponentUtil.getFessConfig().getPagePathMappingMaxFetchSizeAsInteger()); }); if (logger.isDebugEnabled()) { cachedPathMappingList.forEach(e -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
final ListResultBean<FavoriteLog> list = favoriteLogBhv.selectList(cb2 -> { cb2.query().setUserInfoId_Equal(userInfo.getId()); cb2.query().setUrl_InScope(urlList); cb2.fetchFirst(fessConfig.getPageFavoriteLogMaxFetchSizeAsInteger()); }); if (!list.isEmpty()) { final List<String> newUrlList = new ArrayList<>(list.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0)