Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 242 for amatch (0.19 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileConfigCQ.java

            setAvailable_Terms(availableList, opLambda);
        }
    
        public void setAvailable_Match(Boolean available) {
            setAvailable_Match(available, null);
        }
    
        public void setAvailable_Match(Boolean available, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("available", available);
            if (opLambda != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 165.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

            setBusinessCategory_Terms(businessCategoryList, opLambda);
        }
    
        public void setBusinessCategory_Match(String businessCategory) {
            setBusinessCategory_Match(businessCategory, null);
        }
    
        public void setBusinessCategory_Match(String businessCategory, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("businessCategory", businessCategory);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 326.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsSearchLogCQ.java

            setAccessType_Terms(accessTypeList, opLambda);
        }
    
        public void setAccessType_Match(String accessType) {
            setAccessType_Match(accessType, null);
        }
    
        public void setAccessType_Match(String accessType, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("accessType", accessType);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 145.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    "{\"bool\":{\"should\":[{\"match_phrase\":{\"title\":{\"query\":\"aaa\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":0.5}}},{\"match_phrase\":{\"content\":{\"query\":\"aaa\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":0.05}}}],\"adjust_pure_negative\":true,\"boost\":1.0}}",
                    "aaa");
            assertQueryBuilder(MatchPhraseQueryBuilder.class,
    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)
  5. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsLabelTypeCQ.java

            setCreatedBy_Terms(createdByList, opLambda);
        }
    
        public void setCreatedBy_Match(String createdBy) {
            setCreatedBy_Match(createdBy, null);
        }
    
        public void setCreatedBy_Match(String createdBy, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("createdBy", createdBy);
            if (opLambda != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 87.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsRelatedContentCQ.java

            setContent_Terms(contentList, opLambda);
        }
    
        public void setContent_Match(String content) {
            setContent_Match(content, null);
        }
    
        public void setContent_Match(String content, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regMatchQ("content", content);
            if (opLambda != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 63.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                return Collections.emptySet();
            }
    
            final Set<String> valueSet = new HashSet<>();
            for (final LabelTypePattern pattern : labelTypePatternList) {
                if (pattern.match(path)) {
                    valueSet.add(pattern.getValue());
                }
            }
            return valueSet;
        }
    
        protected void buildLabelTypePatternList(final List<LabelType> labelTypeList) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (2)
  8. src/main/resources/fess_message_ru.properties

    errors.invalid_kuromoji_token={0} is invalid.
    errors.invalid_kuromoji_segmentation=The number of segmentations {0} does not the match number of readings {1}.
    errors.invalid_str_is_included="{1}" in "{0}" is invalid.
    errors.blank_password=Password is required.
    errors.invalid_confirm_password=Confirm Password does not match.
    errors.cannot_delete_doc_because_of_running=Crawler is running. The document cannot be deleted.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_ja.properties

    labels.reqheader_name=名前
    labels.reqheader_value=値
    labels.reqheader_web_crawling_config=ウェブ設定
    labels.key_match_configuration=キーマッチ
    labels.key_match_list_term=検索語
    labels.key_match_list_query=クエリー
    labels.key_match_term=検索語
    labels.key_match_query=クエリー
    labels.key_match_size=サイズ
    labels.key_match_boost=ブースト値
    labels.key_match_urls=URL
    labels.key_match_title_details=キーマッチ
    labels.design_configuration=ページのデザイン
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  10. src/main/webapp/WEB-INF/view/common/help.jsp

    		"*" is a multiple character wildcard search.
    		<pre>Fess*</pre>
    		or
    		<pre>Fe?s</pre>
    	</dd>
    	<dt>Range</dt>
    	<dd>
    		Range Queries allow one to match documents whose field(s) values are
    		between the lower and upper bound specified by the Range Query. Range
    		Queries can be inclusive or exclusive of the upper and lower bounds.
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
Back to top