- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for matchAll (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
return writer -> { final SearchLogBhv bhv = ComponentUtil.getComponent(SearchLogBhv.class); bhv.selectCursor(cb -> { cb.query().matchAll(); cb.query().addOrderBy_RequestedAt_Asc(); }, new LogEntityRowHandler<SearchLog>() { @Override public void handle(final SearchLog entity) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
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) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
* * @return A list of KeyMatch instances. */ 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/app/service/CrawlingInfoService.java
crawlingInfoParamBhv.queryDelete(cb1 -> cb1.query().filtered((cq, cf) -> { cq.matchAll(); if (!idList.isEmpty()) { cf.not(subCf -> subCf.setCrawlingInfoId_InScope(idList)); } })); crawlingInfoBhv.queryDelete(cb2 -> cb2.query().filtered((cq, cf) -> { cq.matchAll(); if (!idList.isEmpty()) {
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/opensearch/log/allcommon/EsAbstractConditionQuery.java
regQ(queryStringQuery); if (opLambda != null) { opLambda.callback(queryStringQuery); } } public void matchAll() { doMatchAll(null); } public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) { assertObjectNotNull("opLambda", opLambda); doMatchAll(opLambda); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionQuery.java
regQ(queryStringQuery); if (opLambda != null) { opLambda.callback(queryStringQuery); } } public void matchAll() { doMatchAll(null); } public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) { assertObjectNotNull("opLambda", opLambda); doMatchAll(opLambda); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java
regQ(queryStringQuery); if (opLambda != null) { opLambda.callback(queryStringQuery); } } public void matchAll() { doMatchAll(null); } public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) { assertObjectNotNull("opLambda", opLambda); doMatchAll(opLambda); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
/** * Gets a list of available roles. * @return A list of available roles. */ public List<Role> getAvailableRoleList() { return roleBhv.selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_Name_Asc(); cb.paging(fessConfig.getPageRoleMaxFetchSizeAsInteger(), 1); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
*/ public List<RelatedQuery> getAvailableRelatedQueryList() { return ComponentUtil.getComponent(RelatedQueryBhv.class).selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_Term_Asc(); cb.fetchFirst(ComponentUtil.getFessConfig().getPageRelatedqueryMaxFetchSizeAsInteger()); }); } @Override public int load() {
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
* * @return a list of all available RelatedContent entities */ 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)