Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 591 for settingsId (0.65 sec)

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

         * @param settingsIndexName Settings index name
         * @param settingsId Settings ID
         */
        protected ArraySettings(final SuggestSettings settings, final Client client, final String settingsIndexName, final String settingsId) {
            this.settings = settings;
            this.client = client;
            arraySettingsIndexName = createArraySettingsIndexName(settingsIndexName);
            this.settingsId = settingsId;
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java

        /** Array settings for elevate words. */
        protected ArraySettings arraySettings;
    
        /**
         * Constructor.
         * @param settings Suggest settings
         * @param client OpenSearch client
         * @param settingsIndexName Settings index name
         * @param settingsId Settings ID
         */
        protected ElevateWordSettings(final SuggestSettings settings, final Client client, final String settingsIndexName,
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

    /**
     * The SuggestSettings class is responsible for managing the settings related to suggestions.
     * It interacts with an OpenSearch client to store and retrieve settings.
     *
     * <p>This class provides methods to initialize settings, get and set individual settings,
     * and manage various types of settings such as array settings, analyzer settings, bad word settings,
     * and elevate word settings.</p>
     *
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/settings/BadWordSettings.java

        /** Array settings for bad words. */
        protected ArraySettings arraySettings;
    
        /** Default bad words. */
        protected static String[] defaultWords = null;
    
        /**
         * Constructor.
         * @param settings Suggest settings
         * @param client OpenSearch client
         * @param settingsIndexName Settings index name
         * @param settingsId Settings ID
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. docs/em/docs/advanced/settings.md

    ### ๐Ÿ“ ๐Ÿ“
    
    ๐Ÿ‘Ÿ โšช๏ธโžก๏ธ โฎ๏ธ ๐Ÿ–ผ, ๐Ÿ‘† `config.py` ๐Ÿ“ ๐Ÿ’ช ๐Ÿ‘€ ๐Ÿ’–:
    
    {* ../../docs_src/settings/app02/config.py hl[10] *}
    
    ๐Ÿ‘€ ๐Ÿ‘ˆ ๐Ÿ”œ ๐Ÿ‘ฅ ๐Ÿšซ โœ ๐Ÿ”ข ๐Ÿ‘ `settings = Settings()`.
    
    ### ๐Ÿ‘‘ ๐Ÿ“ฑ ๐Ÿ“
    
    ๐Ÿ”œ ๐Ÿ‘ฅ โœ ๐Ÿ”— ๐Ÿ‘ˆ ๐Ÿ“จ ๐Ÿ†• `config.Settings()`.
    
    {* ../../docs_src/settings/app02/main.py hl[5,11:12] *}
    
    /// tip
    
    ๐Ÿ‘ฅ ๐Ÿ”œ ๐Ÿ”ฌ `@lru_cache` ๐Ÿ–.
    
    ๐Ÿ”œ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿค” `get_settings()` ๐Ÿ˜ ๐Ÿ”ข.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/settings.xml

     |
     |  1. User Level. This settings.xml file provides configuration for a single user,
     |                 and is normally provided in ${user.home}/.m2/settings.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -s /path/to/user/settings.xml
     |
     |  2. Installation Level.
     |                 This settings.xml file provides configuration for all Maven
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 22 07:44:50 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  7. docs/pt/docs/advanced/settings.md

    ## Pydantic `Settings`
    
    Por sorte, o Pydantic possui uma funcionalidade para lidar com essas configuraรงรตes vindas de variรกveis de ambiente utilizando <a href="https://docs.pydantic.dev/latest/usage/pydantic_settings/" class="external-link" target="_blank">Pydantic: Settings management</a>.
    
    ### Instalando `pydantic-settings`
    
    Primeiro, instale o pacote `pydantic-settings`:
    
    <div class="termy">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Jan 15 20:17:23 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/settings.md

    ### Die Haupt-Anwendungsdatei
    
    Jetzt erstellen wir eine Abhรคngigkeit, die ein neues `config.Settings()` zurรผckgibt.
    
    {* ../../docs_src/settings/app02_an_py39/main.py hl[6,12:13] *}
    
    /// tip | Tipp
    
    Wir werden das `@lru_cache` in Kรผrze besprechen.
    
    Im Moment nehmen Sie an, dass `get_settings()` eine normale Funktion ist.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Settings.kt

     * limitations under the License.
     */
    package okhttp3.internal.http2
    
    /**
     * Settings describe characteristics of the sending peer, which are used by the receiving peer.
     * Settings are [connection][Http2Connection] scoped.
     */
    class Settings {
      /** Bitfield of which flags that values. */
      private var set: Int = 0
    
      /** Flag values. */
      private val values = IntArray(COUNT)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/settings.md

    ## Pydantic `Settings` { #pydantic-settings }
    
    Fortunately, Pydantic provides a great utility to handle these settings coming from environment variables with <a href="https://docs.pydantic.dev/latest/concepts/pydantic_settings/" class="external-link" target="_blank">Pydantic: Settings management</a>.
    
    ### Install `pydantic-settings` { #install-pydantic-settings }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top