- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 48 for included_paths (0.13 seconds)
-
src/main/resources/fess_label_ko.properties
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=최대 접근 횟수 labels.number_of_thread=스레드 수
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 51.6K bytes - Click Count (0) -
src/main/resources/fess_label_ja.properties
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=最大アクセス数 labels.number_of_thread=スレッド数
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 56.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Included Paths */ public static final String LABELS_included_paths = "{labels.included_paths}"; /** The key of the message: Excluded Paths */ public static final String LABELS_excluded_paths = "{labels.excluded_paths}"; /** The key of the message: Included Doc Paths */ public static final String LABELS_included_doc_paths = "{labels.included_doc_paths}";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 172.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsFileConfigCQ.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);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 165.3K bytes - Click Count (0) -
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) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/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); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 87.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/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");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 13.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/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");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 8.5K bytes - Click Count (0) -
src/main/config/es/fess_config_file_config.json
"type" : "keyword" }, "excludedPaths" : { "type" : "keyword" }, "includedDocPaths" : { "type" : "keyword" }, "includedPaths" : { "type" : "keyword" }, "intervalTime" : { "type" : "integer" }, "maxAccessCount" : { "type" : "long" },
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 2.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_edit.jsp
<label for="includedPaths" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.labeltype_included_paths"/></label> <div class="col-sm-9"> <la:errors property="includedPaths"/> <la:textarea styleId="includedPaths" property="includedPaths"Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 7.5K bytes - Click Count (0)