Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for elasticsearch (0.46 sec)

  1. README.md

    Fess is based on [OpenSearch](https://github.com/opensearch-project/OpenSearch)/[Elasticsearch](https://github.com/elastic/elasticsearch), but knowledge/experience about OpenSearch/Elasticsearch is _not_ required. Fess provides an easy to use Administration GUI to configure the system via your browser.
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  2. internal/config/notify/help.go

    		},
    	}
    
    	HelpES = config.HelpKVS{
    		config.HelpKV{
    			Key:         target.ElasticURL,
    			Description: "Elasticsearch server's address, with optional authentication info",
    			Type:        "url",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         target.ElasticIndex,
    			Description: `Elasticsearch index to store/update events, index is auto-created`,
    			Type:        "string",
    		},
    		config.HelpKV{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Mar 19 04:37:54 GMT 2024
    - 18.8K bytes
    - Viewed (0)
  3. deps.xml

    		</antcall>
    		<!-- kopf -->
    		<get dest="${target.dir}/kopf.zip">
    			<url url="https://github.com/codelibs/elasticsearch-kopf/archive/${kopf.branch}.zip" />
    		</get>
    		<delete dir="${site.dir}/kopf" />
    		<unzip dest="${site.dir}/kopf" src="${target.dir}/kopf.zip">
    			<patternset>
    				<include name="elasticsearch-kopf-${kopf.branch}/_site/**" />
    			</patternset>
    			<cutdirsmapper dirs="2" />
    		</unzip>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:44:26 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  4. docs/de/docs/project-generation.md

    * Einfache Python-Integration mit **Jupyter-Kerneln** für Remote- oder In-Docker-Entwicklung mit Erweiterungen wie Atom Hydrogen oder...
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:14:36 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                return value;
            }
            return get("elasticsearch.type");
        }
    
        String getSearchEngineHttpUrl();
    
        default String getFesenHttpUrl() {
            final String value = getSearchEngineHttpUrl();
            if (value != null) {
                return value;
            }
            return get("elasticsearch.http.url");
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

        // ===================================================================================
        //                                                                       Elasticsearch
        //                                                                              ======
        public RefreshResponse refresh() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractBehavior.java

        // ===================================================================================
        //                                                                       Elasticsearch
        //                                                                              ======
        public RefreshResponse refresh() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java

        // ===================================================================================
        //                                                                       Elasticsearch
        //                                                                              ======
        public RefreshResponse refresh() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    * Upgrade Elasticsearch/Kibana to 5.5.1 in fluentd-elasticsearch addon ([#48722](https://github.com/kubernetes/kubernetes/pull/48722), [@aknuds1](https://github.com/aknuds1))
            * Switch to basing our image of Elasticsearch in fluentd-elasticsearch addon off the official one
            * Switch to the official image of Kibana in fluentd-elasticsearch addon
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Feb 20 15:45:02 GMT 2024
    - 312.2K bytes
    - Viewed (1)
  10. internal/config/notify/parse.go

    		}
    		if err = webhookArgs.Validate(); err != nil {
    			return nil, err
    		}
    		webhookTargets[k] = webhookArgs
    	}
    	return webhookTargets, nil
    }
    
    // DefaultESKVS - default KV config for Elasticsearch target
    var (
    	DefaultESKVS = config.KVS{
    		config.KV{
    			Key:   config.Enable,
    			Value: config.EnableOff,
    		},
    		config.KV{
    			Key:   target.ElasticURL,
    			Value: "",
    		},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 46.4K bytes
    - Viewed (0)
Back to top