Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 125 for seorang (0.37 sec)

  1. docs/es/docs/tutorial/schema-extra-example.md

    ### `Body` con múltiples `examples`
    
    Por supuesto, también puedes pasar múltiples `examples`:
    
    {* ../../docs_src/schema_extra_example/tutorial004_an_py310.py hl[23:38] *}
    
    Cuando haces esto, los ejemplos serán parte del **JSON Schema** interno para esos datos de body.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/dependencies/classes-as-dependencies.md

    * Un parámetro de query `skip` que es un `int`, con un valor por defecto de `0`.
    * Un parámetro de query `limit` que es un `int`, con un valor por defecto de `100`.
    
    En ambos casos, los datos serán convertidos, validados, documentados en el esquema de OpenAPI, etc.
    
    ## Úsalo
    
    Ahora puedes declarar tu dependencia usando esta clase.
    
    {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        protected int maxErrorCount = 2;
    
        /** List of finished crawler session IDs for cleanup */
        protected List<String> finishedSessionIdList = new ArrayList<>();
    
        /** List of document boost matchers for scoring enhancement */
        private final List<DocBoostMatcher> docBoostMatcherList = new ArrayList<>();
    
        /** List of active crawler instances */
        private List<Crawler> crawlerList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/dependencies/index.md

    Esto será especialmente útil cuando lo uses en una **gran base de código** donde uses **las mismas dependencias** una y otra vez en **muchas *path operations***.
    
    ## Usar `async` o no usar `async`
    
    Como las dependencias también serán llamadas por **FastAPI** (lo mismo que tus *path operation functions*), las mismas reglas aplican al definir tus funciones.
    
    Puedes usar `async def` o `def` normal.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess.json

              "type":       "keyword_marker",
              "keywords_path": "${fess.dictionary.path}ckb-iq/protwords.txt"
            },
            "sorani_stemmer": {
              "type":       "stemmer",
              "language":   "sorani"
            },
            "sorani_override": {
              "type":       "stemmer_override",
              "rules_path": "${fess.dictionary.path}ckb-iq/stemmer_override.txt"
            },
            "spanish_stop": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jun 06 14:17:42 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  6. docs/es/docs/advanced/additional-responses.md

    ///
    
    Los responses generadas en el OpenAPI para esta *path operation* serán:
    
    ```JSON hl_lines="3-12"
    {
        "responses": {
            "404": {
                "description": "Additional Response",
                "content": {
                    "application/json": {
                        "schema": {
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

        /** Configuration key for Azure AD reply URL. */
        protected static final String AZUREAD_REPLY_URL = "aad.reply.url";
    
        /** Session attribute key for storing Azure AD states. */
        protected static final String STATES = "aadStates";
    
        /** OAuth2 state parameter name. */
        protected static final String STATE = "state";
    
        /** OAuth2 error parameter name. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        private static final Pattern EMAIL_ADDRESS_PATTERN =
                Pattern.compile("[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,6}", Pattern.CASE_INSENSITIVE);
    
        /**
         * Cache for storing resource file modification timestamps to enable cache busting.
         * The cache expires after 10 minutes and has a maximum size of 1000 entries.
         */
        private static LoadingCache<String, Long> resourceHashCache =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

         */
        public ImmutableLongArray build() {
          return count == 0 ? EMPTY : new ImmutableLongArray(array, 0, count);
        }
      }
    
      // Instance stuff here
    
      // The array is never mutated after storing in this field and the construction strategies ensure
      // it doesn't escape this class
      @SuppressWarnings("Immutable")
      private final long[] array;
    
      /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 22K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/ImmutableIntArray.java

         */
        public ImmutableIntArray build() {
          return count == 0 ? EMPTY : new ImmutableIntArray(array, 0, count);
        }
      }
    
      // Instance stuff here
    
      // The array is never mutated after storing in this field and the construction strategies ensure
      // it doesn't escape this class
      @SuppressWarnings("Immutable")
      private final int[] array;
    
      /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 21.4K bytes
    - Viewed (0)
Back to top