Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for configsync (0.32 sec)

  1. 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()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5K bytes
    - Viewed (0)
  2. plugin.xml

    			<param name="plugin.zip.version" value="2.13.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.13.1" />
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 3.5K bytes
    - Viewed (1)
  3. 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];
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  4. 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;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/UpgradeUtil.java

            try {
                final String source = FileUtil.readUTF8(filePath);
                try (CurlResponse response =
                        ComponentUtil.getCurlHelper().post("/_configsync/file").param("path", path).body(source).execute()) {
                    if (response.getHttpStatusCode() == 200) {
                        logger.info("Register {} to {}", path, indexName);
                        return true;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  6. 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{}
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Aug 23 10:07:06 GMT 2023
    - 6K bytes
    - Viewed (0)
  7. 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
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 16.5K bytes
    - Viewed (0)
Back to top