- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for setExcludedDocPaths (0.23 sec)
-
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")));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
fConfig.setCreatedTime(now); 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));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.7K bytes - Viewed (0) -
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");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
fileConfig.setIncludedDocPaths(StringUtil.EMPTY); fileConfig.setExcludedPaths(parseFilterPaths(globalParams.get(BAD_URLS), false, true)); fileConfig.setExcludedDocPaths(StringUtil.EMPTY); fileConfig.setPermissions(new String[] { "Rguest" }); fileConfig.setCreatedBy(Constants.SYSTEM_USER); fileConfig.setCreatedTime(now);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileConfigDbm.java
"description"); setupEpg(_epgMap, et -> ((FileConfig) et).getExcludedDocPaths(), (et, vl) -> ((FileConfig) et).setExcludedDocPaths(DfTypeUtil.toString(vl)), "excludedDocPaths"); setupEpg(_epgMap, et -> ((FileConfig) et).getExcludedPaths(), (et, vl) -> ((FileConfig) et).setExcludedPaths(DfTypeUtil.toString(vl)), "excludedPaths");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18K bytes - Viewed (0)