- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for matchAll (0.09 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/helper/WebFsIndexHelper.java
*/ 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) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
list.add("Permissions"); list.add("Labels"); list.add("Boost"); csvWriter.writeValues(list); elevateWordBhv.selectCursor(cb -> cb.query().matchAll(), new EntityRowHandler<ElevateWord>() { @Override public void handle(final ElevateWord entity) { final List<String> list = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
assertTrue(result instanceof MatchAllQueryBuilder); // Verify the query builder generates correct JSON String json = result.toString().replaceAll("[\\s\\n]", ""); assertEquals("{\"match_all\":{\"boost\":1.0}}", json); } public void test_execute_withDifferentBoost() { // Test execute method with different boost value QueryContext context = new QueryContext("*:*", false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0)