Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MatchAllQueryBuilder (0.43 sec)

  1. src/main/java/org/codelibs/fess/entity/QueryContext.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.util.LaRequestUtil;
    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.functionscore.FunctionScoreQueryBuilder.FilterFunctionBuilder;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/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) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/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) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/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) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
Back to top