Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for seorang (0.07 sec)

  1. docs/es/docs/tutorial/path-params.md

    Al heredar de `str`, la documentación de la API podrá saber que los valores deben ser de tipo `string` y podrá representarlos correctamente.
    
    Luego crea atributos de clase con valores fijos, que serán los valores válidos disponibles:
    
    {* ../../docs_src/path_params/tutorial005.py hl[1,6:9] *}
    
    /// info | Información
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/path-operation-configuration.md

    ## Tags
    
    Puedes añadir tags a tu *path operation*, pasando el parámetro `tags` con un `list` de `str` (comúnmente solo una `str`):
    
    {* ../../docs_src/path_operation_configuration/tutorial002_py310.py hl[15,20,25] *}
    
    Serán añadidas al esquema de OpenAPI y usadas por las interfaces de documentación automática:
    
    <img src="/img/tutorial/path-operation-configuration/image01.png">
    
    ### Tags con Enums
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            // Test commit after concurrent operations
            callback.commit();
        }
    
        public void test_store_with_various_data_types() {
            // Test storing various data types
            final AtomicInteger callCount = new AtomicInteger(0);
    
            IndexUpdateCallback callback = new IndexUpdateCallback() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/cookie-param-models.md

    Pero incluso si **rellenas los datos** y haces clic en "Execute", como la UI de la documentación funciona con **JavaScript**, las cookies no serán enviadas y verás un **mensaje de error** como si no hubieras escrito ningún valor.
    
    ///
    
    ## Prohibir Cookies Extra
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        /** Request attribute key for storing queries. */
        public static final String REQUEST_QUERIES = "fess.Queries";
    
        /** Request attribute key for storing highlight queries. */
        public static final String HIGHLIGHT_QUERIES = "fess.HighlightQueries";
    
        /** Request attribute key for storing field logs. */
        public static final String FIELD_LOGS = "fess.FieldLogs";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/mdo/profiles.mdo

              <type>String</type>
            </field>
            <field>
              <name>layout</name>
              <version>1.0.0</version>
              <description>The type of layout this repository uses for locating and storing artifacts - can be "legacy" or
                "default".</description>
              <type>String</type>
              <defaultValue>default</defaultValue>
            </field>
          </fields>
          <codeSegments>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 22 11:03:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  7. docs/id/docs/tutorial/path-params.md

    ## Urutan berpengaruh
    
    Ketika membuat  *operasi path*, anda bisa menghadapi kondisi dimana *path* nya sudah tetap.
    
    Seperti `/users/me`, untuk mendapatkan data user yang sedang aktif.
    
    Kemudian anda bisa memiliki path `/users/{user_id}` untuk mendapatkan data user tertentu melalui user ID.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

            }
            return OptionalEntity.of(list.get(0));
        }
    
        /**
         * Stores (inserts or updates) a data configuration.
         *
         * <p>This method encrypts sensitive handler parameters before storing
         * and immediately refreshes the index to ensure the change is visible.
         * If the configuration already exists (based on ID), it will be updated;
         * otherwise, a new configuration will be created.</p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  9. docs/es/docs/how-to/separate-openapi-schemas.md

    <img src="/img/tutorial/separate-openapi-schemas/image04.png">
    </div>
    
    Con esta funcionalidad de **Pydantic v2**, la documentación de tu API es más **precisa**, y si tienes clientes y SDKs autogenerados, también serán más precisos, con una mejor **experiencia para desarrolladores** y consistencia. 🎉
    
    ## No Separar Esquemas
    
    Ahora, hay algunos casos donde podrías querer tener el **mismo esquema para entrada y salida**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

         */
        protected class ProtwordsUpdater implements Closeable {
    
            /** Flag indicating if the update should be committed */
            protected boolean isCommit = false;
    
            /** Temporary file for storing updates */
            protected File newFile;
    
            /** Writer for writing to the temporary file */
            protected Writer writer;
    
            /** The item being updated */
            protected ProtwordsItem item;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top