- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for configsync (0.11 sec)
-
plugin.xml
<param name="plugin.zip.version" value="2.17.1" /> </antcall> <!-- configsync --> <antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" /> <param name="plugin.groupId" value="org/codelibs/opensearch" /> <param name="plugin.name.prefix" value="opensearch-" /> <param name="plugin.name" value="configsync" /> <param name="plugin.version" value="2.17.1" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 25 23:33:43 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java
logger.warn("ConfigSync request failed.", response.getContentException()); } else { logger.warn("ConfigSync request failed. The response is {}", response.getContentAsString()); } } catch (final IOException e) { logger.warn("ConfigSync request failed.", e); } return new String[0]; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 54K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
final int httpStatusCode = response.getHttpStatusCode(); if (httpStatusCode == 200) { logger.info("ConfigSync is ready."); return; } final String message = "Configsync is not available. HTTP Status is " + httpStatusCode;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
creator.setDictionaryManager(this); }); } public DictionaryFile<? extends DictionaryItem>[] getDictionaryFiles() { try (CurlResponse response = ComponentUtil.getCurlHelper().get("/_configsync/file").param("fields", "path,@timestamp") .param("size", ComponentUtil.getFessConfig().getPageDictionaryMaxFetchSize()).execute()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5K bytes - Viewed (0) -
cmd/config.go
return srvCfg.Merge(), nil } // ConfigSys - config system. type ConfigSys struct{} // Init - initializes config system from config.json. func (sys *ConfigSys) Init(objAPI ObjectLayer) error { if objAPI == nil { return errInvalidArgument } return initConfig(objAPI) } // NewConfigSys - creates new config system object. func NewConfigSys() *ConfigSys { return &ConfigSys{} }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 23 10:07:06 UTC 2023 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/UpgradeUtil.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0) -
cmd/globals.go
globalMinioConsoleHost = "" // Holds the possible host endpoint. globalMinioEndpoint = "" globalMinioEndpointURL *xnet.URL // globalConfigSys server config system. globalConfigSys *ConfigSys globalNotificationSys *NotificationSys globalEventNotifier *EventNotifier globalNotifyTargetList *event.TargetList globalLambdaTargetList *levent.TargetList
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (0)