Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for includedPaths (0.1 sec)

  1. 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) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/LabelTypeDbm.java

                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);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/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);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        @CustomSize(maxKey = "form.admin.max.input.size")
        public String paths;
    
        /** The paths to include during crawling (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedPaths;
    
        /** The paths to exclude during crawling (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedPaths;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java

        @Pattern(regexp = "^[a-zA-Z0-9_]+$")
        public String value;
    
        /**
         * The paths to include for this label type.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedPaths;
    
        /**
         * The paths to exclude for this label type.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedPaths;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

            assertEquals("{labels.hostname}", FessLabels.LABELS_HOSTNAME);
            assertEquals("{labels.id}", FessLabels.LABELS_ID);
            assertEquals("{labels.includedPaths}", FessLabels.LABELS_INCLUDED_PATHS);
            assertEquals("{labels.includedUrls}", FessLabels.LABELS_INCLUDED_URLS);
            assertEquals("{labels.includedDocPaths}", FessLabels.LABELS_INCLUDED_DOC_PATHS);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                    fConfig.setIncludedDocPaths(getDefaultString("default.config.file.includedDocPaths", StringUtil.EMPTY));
                    fConfig.setIncludedPaths(getDefaultString("default.config.file.includedPaths", StringUtil.EMPTY));
                    fConfig.setIntervalTime(getDefaultInteger("default.config.file.intervalTime", Constants.DEFAULT_INTERVAL_TIME_FOR_FS));
                    if (form.maxAccessCount != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_en.properties

    labels.excludedUrls=Excluded URLs for Crawling
    labels.excludedDocPaths=Excluded Paths for Searching
    labels.excludedDocUrls=Excluded URLs for Searching
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Included Paths for Crawling
    labels.includedUrls=Included URLs for Crawling
    labels.includedDocPaths=Included Paths for Searching
    labels.includedDocUrls=Included URLs for Searching
    labels.maxAccessCount=Max Access Count
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_zh_TW.properties

    labels.createdTime=建立時間
    labels.depth=深度
    labels.excludedPaths=要從爬網中排除的路徑
    labels.excludedUrls=要從爬網中排除的URL
    labels.excludedDocPaths=要從搜尋中排除的路徑
    labels.excludedDocUrls=要從搜尋中排除的URL
    labels.hostname=主機名稱
    labels.id=ID
    labels.includedPaths=要包含在爬網中的路徑
    labels.includedUrls=要包含在爬網中的URL
    labels.includedDocPaths=要包含在搜尋中的路徑
    labels.includedDocUrls=要包含在搜尋中的URL
    labels.maxAccessCount=最大訪問數
    labels.name=名稱
    labels.numOfThread=執行緒數
    labels.duplicateHostName=重複名稱
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_de.properties

    labels.excludedUrls=Ausgeschlossene URLs für das Crawling
    labels.excludedDocPaths=Ausgeschlossene Pfade für die Suche
    labels.excludedDocUrls=Ausgeschlossene URLs für die Suche
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Eingeschlossene Pfade für das Crawling
    labels.includedUrls=Eingeschlossene URLs für das Crawling
    labels.includedDocPaths=Eingeschlossene Pfade für die Suche
    labels.includedDocUrls=Eingeschlossene URLs für die Suche
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
Back to top