Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for included_paths (0.19 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.header_brand_name	=	Fess
    labels.header_form_option_btn	=	Choix
    labels.file_crawling_configuration	=	Exploration de fichiers
    labels.file_crawling_title_details	=	Configuration de l'exploration de fichiers
    labels.included_paths	=	Chemins inclus pour l'exploration
    labels.excluded_paths	=	Chemins exclus pour l'exploration
    labels.included_doc_paths	=	Chemins inclus pour l'indexation
    labels.excluded_doc_paths	=	Chemins exclus pour l'indexation
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ja.properties

    labels.search_unknown=不明
    labels.footer_back_to_top=トップに戻る
    labels.header_brand_name=Fess
    labels.header_form_option_btn=オプション
    labels.file_crawling_configuration=ファイルのクロール
    labels.file_crawling_title_details=ファイルクロールの設定
    labels.included_paths=クロール対象とするパス
    labels.excluded_paths=クロール対象から除外するパス
    labels.included_doc_paths=検索対象とするパス
    labels.excluded_doc_paths=検索対象から除外するパス
    labels.config_parameter=設定パラメーター
    labels.max_access_count=最大アクセス数
    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)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_file_crawling_title_details = "{labels.file_crawling_title_details}";
    
        /** The key of the message: Included Paths For Crawling */
        public static final String LABELS_included_paths = "{labels.included_paths}";
    
        /** The key of the message: Excluded Paths For Crawling */
        public static final String LABELS_excluded_paths = "{labels.excluded_paths}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsLabelTypeCQ.java

        public void setIncludedPaths_Equal(String includedPaths) {
            setIncludedPaths_Term(includedPaths, null);
        }
    
        public void setIncludedPaths_Equal(String includedPaths, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setIncludedPaths_Term(includedPaths, opLambda);
        }
    
        public void setIncludedPaths_Term(String includedPaths) {
            setIncludedPaths_Term(includedPaths, 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)
  5. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                final String includedPaths = labelType.getIncludedPaths();
                final String excludedPaths = labelType.getExcludedPaths();
                if (StringUtil.isNotBlank(includedPaths) || StringUtil.isNotBlank(excludedPaths)) {
                    try {
                        list.add(new LabelTypePattern(labelType.getValue(), includedPaths, excludedPaths));
                    } catch (final Exception e) {
    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)
  6. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileConfigCQ.java

            CommonTermsQueryBuilder builder = regCommonTermsQ("includedPaths", includedPaths);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public BsFileConfigCQ addOrderBy_IncludedPaths_Asc() {
            regOBA("includedPaths");
            return this;
        }
    
    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)
  7. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsLabelTypeCA.java

            setIncludedPaths_Terms("includedPaths", opLambda, null);
        }
    
        public void setIncludedPaths_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsLabelTypeCA> aggsLambda) {
            setIncludedPaths_Terms("includedPaths", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 69.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileConfigDbm.java

                "includedDocPaths", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnIncludedPaths = cci("includedPaths", "includedPaths", null, null, String.class, "includedPaths", null,
                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/BsLabelType.java

            this.excludedPaths = value;
        }
    
        public String getIncludedPaths() {
            checkSpecifiedProperty("includedPaths");
            return convertEmptyToNull(includedPaths);
        }
    
        public void setIncludedPaths(String value) {
            registerModifiedProperty("includedPaths");
            this.includedPaths = value;
        }
    
        public String getName() {
            checkSpecifiedProperty("name");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java

        }
    
        public String getIncludedPaths() {
            checkSpecifiedProperty("includedPaths");
            return convertEmptyToNull(includedPaths);
        }
    
        public void setIncludedPaths(String value) {
            registerModifiedProperty("includedPaths");
            this.includedPaths = value;
        }
    
        public Integer getIntervalTime() {
            checkSpecifiedProperty("intervalTime");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.7K bytes
    - Viewed (0)
Back to top