Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for regMatchQ (0.08 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsScheduledJobCQ.java

            setAvailable_Match(available, null);
        }
    
        public void setAvailable_Match(Boolean available, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("available", available);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setAvailable_MatchPhrase(Boolean available) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 98.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsCrawlingInfoCQ.java

            setCreatedTime_Match(createdTime, null);
        }
    
        public void setCreatedTime_Match(Long createdTime, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("createdTime", createdTime);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedTime_MatchPhrase(Long createdTime) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsCrawlingInfoParamCQ.java

            setCrawlingInfoId_Match(crawlingInfoId, null);
        }
    
        public void setCrawlingInfoId_Match(String crawlingInfoId, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("crawlingInfoId", crawlingInfoId);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCrawlingInfoId_MatchPhrase(String crawlingInfoId) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 36K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsJobLogCQ.java

            setEndTime_Match(endTime, null);
        }
    
        public void setEndTime_Match(Long endTime, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("endTime", endTime);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setEndTime_MatchPhrase(Long endTime) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 71.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsElevateWordCQ.java

            setBoost_Match(boost, null);
        }
    
        public void setBoost_Match(Float boost, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("boost", boost);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setBoost_MatchPhrase(Float boost) {
            setBoost_MatchPhrase(boost, null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 64.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsBadWordCQ.java

            setCreatedBy_Match(createdBy, null);
        }
    
        public void setCreatedBy_Match(String createdBy, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("createdBy", createdBy);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_MatchPhrase(String createdBy) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 58.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsBoostDocumentRuleCQ.java

            setBoostExpr_Match(boostExpr, null);
        }
    
        public void setBoostExpr_Match(String boostExpr, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("boostExpr", boostExpr);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setBoostExpr_MatchPhrase(String boostExpr) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsRequestHeaderCQ.java

            setCreatedBy_Match(createdBy, null);
        }
    
        public void setCreatedBy_Match(String createdBy, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("createdBy", createdBy);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_MatchPhrase(String createdBy) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 57.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java

            IdsQueryBuilder idsQuery = QueryBuilders.idsQuery().addIds(values.toArray(new String[values.size()]));
            regQ(idsQuery);
            return idsQuery;
        }
    
        protected MatchQueryBuilder regMatchQ(String name, Object value) {
            checkEsInvalidQuery(name, value);
            MatchQueryBuilder matchQuery = QueryBuilders.matchQuery(name, value);
            regQ(matchQuery);
            return matchQuery;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/log/cbean/cq/bs/BsUserInfoCQ.java

            setCreatedAt_Match(createdAt, null);
        }
    
        public void setCreatedAt_Match(LocalDateTime createdAt, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("createdAt", createdAt);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedAt_MatchPhrase(LocalDateTime createdAt) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 20.1K bytes
    - Viewed (0)
Back to top