- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for MatchAllDocsQuery (0.83 sec)
-
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
assertEquals("MatchAllDocsQuery", className); assertEquals(MatchAllDocsQuery.class.getSimpleName(), className); } public void test_execute() { // Test execute method with normal parameters QueryContext context = new QueryContext("*:*", false); MatchAllDocsQuery query = new MatchAllDocsQuery(); float boost = 1.0f;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java
assertEquals(2.5f, termQueryBuilder.boost()); } } public void test_execute_withMatchAllDocsQuery() { // Test executing BoostQuery with a MatchAllDocsQuery inside MatchAllDocsQuery matchAllQuery = new MatchAllDocsQuery(); BoostQuery boostQuery = new BoostQuery(matchAllQuery, 3.0f); QueryContext context = new QueryContext("test", false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
assertEquals(1, boolResult.must().size()); } // Test execute with MatchAllDocsQuery wrapped in BooleanQuery public void test_execute_withMatchAllDocsQuery() { BooleanQuery.Builder boolQueryBuilder = new BooleanQuery.Builder(); MatchAllDocsQuery matchAllQuery = new MatchAllDocsQuery(); boolQueryBuilder.add(matchAllQuery, BooleanClause.Occur.MUST);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0)