Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for MatchAllQueryBuilder (0.21 sec)

  1. src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java

            float boost = 2.5f;
    
            QueryBuilder result = matchAllQueryCommand.execute(context, query, boost);
    
            assertNotNull(result);
            assertTrue(result instanceof MatchAllQueryBuilder);
    
            // MatchAllQueryBuilder should apply the boost value
            String json = result.toString().replaceAll("[\\s\\n]", "");
            assertEquals("{\"match_all\":{\"boost\":2.5}}", json);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

            QueryBuilder result = queryProcessor.execute(context, boostQuery, 1.0f);
    
            assertNotNull(result);
            assertTrue(result instanceof MatchAllQueryBuilder);
            MatchAllQueryBuilder matchAllQueryBuilder = (MatchAllQueryBuilder) result;
            assertEquals(3.0f, matchAllQueryBuilder.boost());
        }
    
        public void test_execute_withPhraseQuery() {
            // Test executing BoostQuery with a PhraseQuery inside
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java

            doMatchAll(null);
        }
    
        public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            assertObjectNotNull("opLambda", opLambda);
            doMatchAll(opLambda);
        }
    
        protected void doMatchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            MatchAllQueryBuilder builder = QueryBuilders.matchAllQuery();
            regQ(builder);
            if (opLambda != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionQuery.java

            doMatchAll(null);
        }
    
        public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            assertObjectNotNull("opLambda", opLambda);
            doMatchAll(opLambda);
        }
    
        protected void doMatchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            MatchAllQueryBuilder builder = QueryBuilders.matchAllQuery();
            regQ(builder);
            if (opLambda != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionQuery.java

            doMatchAll(null);
        }
    
        public void matchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            assertObjectNotNull("opLambda", opLambda);
            doMatchAll(opLambda);
        }
    
        protected void doMatchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            MatchAllQueryBuilder builder = QueryBuilders.matchAllQuery();
            regQ(builder);
            if (opLambda != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.index.query.BoolQueryBuilder;
    import org.opensearch.index.query.MatchAllQueryBuilder;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.index.query.TermQueryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
Back to top