- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 42 for config_id (0.1 sec)
-
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
}; ComponentUtil.register(client, "searchEngineClient"); final String configId = "W01"; assertEquals(1, indexingHelper.deleteByConfigId(configId)); assertEquals("fess.update", resultMap.get("index")); assertEquals("config_id", resultMap.get("field")); assertEquals(configId, resultMap.get("value")); } public void test_deleteByVirtualHost() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 24 08:54:24 UTC 2024 - 23.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
} protected static List<Map<String, Object>> readCrawlingInfo(final String configId) { final List<Map<String, Object>> logList = readLogItems("crawlinginfo"); final List<Map<String, Object>> resList = new ArrayList<>(); for (Map<String, Object> elem : logList) { logger.info("config_id: {}, session_id: {}", configId, elem.get("session_id"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/resources/fess_indices/_cloud/fess/doc.json
"properties": { "anchor": { "type": "keyword" }, "boost": { "type": "float" }, "click_count": { "type": "long" }, "config_id": { "type": "keyword" }, "important_content": { "type": "text", "analyzer": "standard_analyzer", "search_analyzer": "standard_search_analyzer",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.7K bytes - Viewed (0) -
src/main/resources/fess_indices/_aws/fess/doc.json
"properties": { "anchor": { "type": "keyword" }, "boost": { "type": "float" }, "click_count": { "type": "long" }, "config_id": { "type": "keyword" }, "important_content": { "type": "text", "analyzer": "standard_analyzer", "search_analyzer": "standard_search_analyzer",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.7K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/doc.json
"properties": { "anchor": { "type": "keyword" }, "boost": { "type": "float" }, "click_count": { "type": "long" }, "config_id": { "type": "keyword" }, "important_content": { "type": "text", "analyzer": "standard_analyzer", "search_analyzer": "standard_search_analyzer",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.8K bytes - Viewed (0) -
src/main/resources/fess_config.properties
index.auto_expand_replicas=0-1 index.id.digest.algorithm=SHA-512 index.user.initial_password=admin # field names index.field.favorite_count=favorite_count index.field.click_count=click_count index.field.config_id=config_id index.field.expires=expires index.field.url=url index.field.doc_id=doc_id index.field.id=_id index.field.version=_version index.field.seq_no=_seq_no index.field.primary_term=_primary_term
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. click_count */ String INDEX_FIELD_click_count = "index.field.click_count"; /** The key of the configuration. e.g. config_id */ String INDEX_FIELD_config_id = "index.field.config_id"; /** The key of the configuration. e.g. expires */ String INDEX_FIELD_EXPIRES = "index.field.expires"; /** The key of the configuration. e.g. url */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFailureUrlCQ.java
if (opLambda != null) { opLambda.callback(builder); } } public void setConfigId_SpanTerm(String configId) { setConfigId_SpanTerm("configId", null); } public void setConfigId_SpanTerm(String configId, ConditionOptionCall<SpanTermQueryBuilder> opLambda) { SpanTermQueryBuilder builder = regSpanTermQ("configId", configId);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 57.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
@Size(max = 1000) public String configId; public String getCurrentPageNumber() { return pageNumber; } public void initialize() { id = null; url = null; threadName = null; errorName = null; errorLog = null; errorCount = null; lastAccessTime = null; configId = null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.7K bytes - Viewed (0) -
cmd/config-dir.go
return filepath.Join(getDefaultCertsDir(), certsCADir) } var ( // Default config, certs and CA directories. defaultConfigDir = &ConfigDir{path: getDefaultConfigDir()} defaultCertsDir = &ConfigDir{path: getDefaultCertsDir()} defaultCertsCADir = &ConfigDir{path: getDefaultCertsCADir()} // Points to current configuration directory -- deprecated, to be removed in future. globalConfigDir = defaultConfigDir
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 3K bytes - Viewed (0)