Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for get$settings (1.67 sec)

  1. src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java

                    empty = true;
                    final CreateIndexResponse response = client.admin()
                            .indices()
                            .prepareCreate(actualIndex)
                            .setSettings(loadIndexSettings(), XContentType.JSON)
                            .execute()
                            .actionGet(settings.getIndicesTimeout());
                    if (!response.isAcknowledged()) {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/Suggester.java

                                getUpdateAlias(index));
                    }
    
                    client.admin()
                            .indices()
                            .prepareCreate(indexName)
                            .setSettings(settingsSource, XContentType.JSON)
                            .setMapping(mappingSource)
                            .addAlias(new Alias(getSearchAlias(index)))
                            .addAlias(new Alias(getUpdateAlias(index)))
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 21.6K bytes
    - Viewed (3)
  3. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

                    try {
                        client.admin()
                                .indices()
                                .prepareCreate(settingsIndexName)
                                .setSettings(loadIndexSettings(), XContentType.JSON)
                                .execute()
                                .actionGet(getIndicesTimeout());
                    } catch (final IOException e) {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        }
    
        /**
         * Sets the configuration settings for the search engine.
         *
         * @param settings map of configuration key-value pairs
         */
        public void setSettings(final Map<String, String> settings) {
            this.settings = settings;
        }
    
        /**
         * Gets the current cluster health status.
         *
         * @return the cluster health status name
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
Back to top