Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for settingsIndexName (0.14 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            this.settingsId = settingsId;
            this.settingsIndexName = settingsIndexName;
            this.initialSettings = initialSettings;
            this.timeoutSettings = timeoutSettings;
    
            badWordIndexName = settingsIndexName + "-badword";
            elevateWordIndexName = settingsIndexName + "-elevateword";
        }
    
        /**
         * Initializes the settings.
         */
        public void init() {
            if (initialized) {
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Mar 14 02:35:38 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilder.java

         */
        public SuggestSettingsBuilder setSettingsIndexName(final String settingsIndexName) {
            this.settingsIndexName = settingsIndexName.toLowerCase(Locale.ENGLISH);
            return this;
        }
    
        /**
         * Adds an initial setting.
         * @param key The key of the setting.
         * @param value The value of the setting.
         * @return This builder instance.
         */
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

         * @param settings The SuggestSettings instance.
         * @param settingsIndexName The name of the settings index.
         */
        public AnalyzerSettings(final Client client, final SuggestSettings settings, final String settingsIndexName) {
            this.client = client;
            this.settings = settings;
            analyzerSettingsIndexName = createAnalyzerSettingsIndexName(settingsIndexName);
        }
    
        /**
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 24.4K bytes
    - Click Count (0)
Back to Top