Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 599 for setKinds (0.2 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            supportedFields = settings.array().get(SuggestSettings.DefaultKeys.SUPPORTED_FIELDS);
            badWords = settings.badword().get(true);
            tagFieldNames = settings.getAsString(SuggestSettings.DefaultKeys.TAG_FIELD_NAME, StringUtil.EMPTY).split(",");
            roleFieldName = settings.getAsString(SuggestSettings.DefaultKeys.ROLE_FIELD_NAME, StringUtil.EMPTY);
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java

            assertNotNull(item.getLanguages());
            assertEquals(0, item.getLanguages().length);
            assertNotNull(item.getKinds());
            assertEquals(1, item.getKinds().length);
            assertEquals(SuggestItem.Kind.DOCUMENT, item.getKinds()[0]);
        }
    
        @Test
        public void testGettersAndSetters() {
            // Test all getter and setter methods
            String[] text = { "initial" };
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            this.languages = languages;
        }
    
        /**
         * Sets the kinds of the suggest item.
         * @param kinds The kinds to set.
         */
        public void setKinds(final Kind[] kinds) {
            this.kinds = kinds;
        }
    
        /**
         * Sets the empty source map.
         * @param emptySource The empty source map to set.
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. docs/es/docs/advanced/settings.md

    ### El archivo principal de la app
    
    Ahora creamos una dependencia que devuelve un nuevo `config.Settings()`.
    
    {* ../../docs_src/settings/app02_an_py39/main.py hl[6,12:13] *}
    
    /// tip | Consejo
    
    Hablaremos del `@lru_cache` en un momento.
    
    Por ahora puedes asumir que `get_settings()` es una funciรณn normal.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top