Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for excluded_paths (0.25 sec)

  1. src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_edit.jsp

                                        <label for="excludedPaths" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.labeltype_excluded_paths"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="excludedPaths"/>
                                            <la:textarea styleId="excludedPaths" property="excludedPaths"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 7.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ja.properties

    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=最大アクセス数
    labels.number_of_thread=スレッド数
    labels.interval_time=間隔
    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/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_details.jsp

                                        <tr>
                                            <th><la:message key="labels.excluded_paths"/></th>
                                            <td>${f:br(f:h(excludedPaths))}<la:hidden
                                                    property="excludedPaths"/></td>
                                        </tr>
                                        <tr>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 10.6K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_details.jsp

                                        <tr>
                                            <th><la:message key="labels.labeltype_excluded_paths"/></th>
                                            <td>${f:br(f:h(excludedPaths))}<la:hidden
                                                    property="excludedPaths"/></td>
                                        </tr>
                                        <tr>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 5.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            final String paths = "file:" + getTestDataPath();
            requestBody.put("name", NAME_PREFIX + "FileConfig");
            requestBody.put("paths", paths);
            requestBody.put("excluded_paths", ".*\\.git.*");
            requestBody.put("max_access_count", 100);
            requestBody.put("num_of_thread", 1);
            requestBody.put("interval_time", 100);
            requestBody.put("boost", 100);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (1)
  6. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_edit.jsp

                                        <label for="excludedPaths" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.excluded_paths"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="excludedPaths"/>
                                            <la:textarea styleId="excludedPaths" property="excludedPaths"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 15.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_de.properties

    labels.header_form_option_btn=Optionen
    labels.file_crawling_configuration=Datei-Crawling
    labels.file_crawling_title_details=Datei-Crawling-Konfiguration
    labels.included_paths=Eingeschlossene Pfade beim Crawling
    labels.excluded_paths=Ausgeschlossene Pfade beim Crawling
    labels.included_doc_paths=Eingeschlossene Pfade bei der Indizierung
    labels.excluded_doc_paths=Ausgeschlossene Pfade bei der Indizierung
    labels.config_parameter=Konfigurationsparameter
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsLabelTypeCQ.java

        public void setExcludedPaths_Equal(String excludedPaths) {
            setExcludedPaths_Term(excludedPaths, null);
        }
    
        public void setExcludedPaths_Equal(String excludedPaths, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setExcludedPaths_Term(excludedPaths, opLambda);
        }
    
        public void setExcludedPaths_Term(String excludedPaths) {
            setExcludedPaths_Term(excludedPaths, 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)
  10. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileConfigCQ.java

            CommonTermsQueryBuilder builder = regCommonTermsQ("excludedPaths", excludedPaths);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public BsFileConfigCQ addOrderBy_ExcludedPaths_Asc() {
            regOBA("excludedPaths");
            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)
Back to top