Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for excludedDocPaths (0.53 sec)

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

        public void setExcludedDocPaths_Equal(String excludedDocPaths) {
            setExcludedDocPaths_Term(excludedDocPaths, null);
        }
    
        public void setExcludedDocPaths_Equal(String excludedDocPaths, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setExcludedDocPaths_Term(excludedDocPaths, opLambda);
        }
    
        public void setExcludedDocPaths_Term(String excludedDocPaths) {
    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/config/bsentity/BsFileConfig.java

        }
    
        public String getExcludedDocPaths() {
            checkSpecifiedProperty("excludedDocPaths");
            return convertEmptyToNull(excludedDocPaths);
        }
    
        public void setExcludedDocPaths(String value) {
            registerModifiedProperty("excludedDocPaths");
            this.excludedDocPaths = value;
        }
    
        public String getExcludedPaths() {
            checkSpecifiedProperty("excludedPaths");
    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)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileConfigDbm.java

                false, false, "text", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnExcludedDocPaths = cci("excludedDocPaths", "excludedDocPaths", null, null, String.class,
                "excludedDocPaths", 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)
  4. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        public String excludedPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedDocPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedDocPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String configParameter;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

            return "FileConfig [available=" + available + ", boost=" + boost + ", configParameter=" + configParameter + ", createdBy="
                    + createdBy + ", createdTime=" + createdTime + ", depth=" + depth + ", excludedDocPaths=" + excludedDocPaths
                    + ", excludedPaths=" + excludedPaths + ", includedDocPaths=" + includedDocPaths + ", includedPaths=" + includedPaths
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFileConfigCA.java

            setExcludedDocPaths_Terms("excludedDocPaths", opLambda, null);
        }
    
        public void setExcludedDocPaths_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFileConfigCA> aggsLambda) {
            setExcludedDocPaths_Terms("excludedDocPaths", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 144.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                    if (form.depth != null) {
                        fConfig.setDepth(form.depth);
                    }
                    fConfig.setExcludedDocPaths(getDefaultString("default.config.file.excludedDocPaths", StringUtil.EMPTY));
                    fConfig.setExcludedPaths(getDefaultString("default.config.file.excludedPaths", StringUtil.EMPTY));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFileConfigCB.java

                doColumn("depth");
            }
    
            public void columnDescription() {
                doColumn("description");
            }
    
            public void columnExcludedDocPaths() {
                doColumn("excludedDocPaths");
            }
    
            public void columnExcludedPaths() {
                doColumn("excludedPaths");
            }
    
            public void columnIncludedDocPaths() {
                doColumn("includedDocPaths");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileConfigBhv.java

                result.setDepth(DfTypeUtil.toInteger(source.get("depth")));
                result.setDescription(DfTypeUtil.toString(source.get("description")));
                result.setExcludedDocPaths(DfTypeUtil.toString(source.get("excludedDocPaths")));
                result.setExcludedPaths(DfTypeUtil.toString(source.get("excludedPaths")));
                result.setIncludedDocPaths(DfTypeUtil.toString(source.get("includedDocPaths")));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_de.properties

    labels.available=Status
    labels.createdBy=Erstellt von
    labels.createdTime=Erstellungszeit
    labels.depth=Tiefe
    labels.excludedPaths=Ausgeschlossene Pfade beim Crawling
    labels.excludedUrls=Ausgeschlossene URLs beim Crawling
    labels.excludedDocPaths=Ausgeschlossene Pfade bei der Indizierung
    labels.excludedDocUrls=Ausgeschlossene URLs bei der Indizierung
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Eingeschlossene Pfade beim Crawling
    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)
Back to top