Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for predefinido (0.13 sec)

  1. docs/es/docs/advanced/security/oauth2-scopes.md

    Para simplificar, aquí solo estamos añadiendo los scopes recibidos directamente al token.
    
    Pero en tu aplicación, por seguridad, deberías asegurarte de añadir solo los scopes que el usuario realmente puede tener, o los que has predefinido.
    
    ///
    
    {* ../../docs_src/security/tutorial005_an_py310.py hl[156] *}
    
    ## Declarar scopes en *path operations* y dependencias
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_it.properties

    labels.user_info_enabled=Log utente
    labels.user_favorite_enabled=Log preferiti
    labels.web_api_json_enabled=Risposta JSON
    labels.app_value=Proprietà di sistema
    labels.default_label_value=Valore etichetta predefinito
    labels.default_sort_value=Valore di ordinamento predefinito
    labels.virtual_host_value=Host virtuale
    labels.append_query_param_enabled=Aggiungi parametro di ricerca
    labels.login_required=Login richiesto
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial003b.py hl[6,11] *}
    
    La primera siempre será utilizada ya que el path coincide primero.
    
    ## Valores predefinidos
    
    Si tienes una *path operation* que recibe un *path parameter*, pero quieres que los valores posibles válidos del *path parameter* estén predefinidos, puedes usar un <abbr title="Enumeration">`Enum`</abbr> estándar de Python.
    
    ### Crear una clase `Enum`
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial003b.py hl[6,11] *}
    
    The first one will always be used since the path matches first.
    
    ## Predefined values { #predefined-values }
    
    If you have a *path operation* that receives a *path parameter*, but you want the possible valid *path parameter* values to be predefined, you can use a standard Python <abbr title="Enumeration">`Enum`</abbr>.
    
    ### Create an `Enum` class { #create-an-enum-class }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/additional-responses.md

    It will all be combined and included in your OpenAPI, and shown in the API docs:
    
    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Combine predefined responses and custom ones { #combine-predefined-responses-and-custom-ones }
    
    You might want to have some predefined responses that apply to many *path operations*, but you want to combine them with custom responses needed by each *path operation*.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/query-params.md

    * `skip`, un `int` con un valor por defecto de `0`.
    * `limit`, un `int` opcional.
    
    /// tip | Consejo
    
    También podrías usar `Enum`s de la misma manera que con [Parámetros de Path](path-params.md#predefined-values){.internal-link target=_blank}.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  7. docs/uk/docs/tutorial/query-params.md

    * `skip`, `int` зі значенням за замовчуванням `0`.
    * `limit`, опціональний `int`.
    
    
    /// tip | Підказка
    
    Ви також можете використовувати `Enum`-и, так само як і з [Path Parameters](path-params.md#predefined-values){.internal-link target=_blank}.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/query-params.md

    * `needy`, a required `str`.
    * `skip`, an `int` with a default value of `0`.
    * `limit`, an optional `int`.
    
    /// tip
    
    You could also use `Enum`s the same way as with [Path Parameters](path-params.md#predefined-values){.internal-link target=_blank}.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/manually.md

    ///
    
    ## Deployment Concepts { #deployment-concepts }
    
    These examples run the server program (e.g Uvicorn), starting **a single process**, listening on all the IPs (`0.0.0.0`) on a predefined port (e.g. `80`).
    
    This is the basic idea. But you will probably want to take care of some additional things, like:
    
    * Security - HTTPS
    * Running on startup
    * Restarts
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

             * @return the new reference count after decrementing
             */
            public int decrement() {
                return count.decrementAndGet();
            }
        }
    
        /**
         * Enumeration of predefined statistics actions that can be recorded
         * during crawler operations. Each action represents a specific event
         * or milestone in the crawling process.
         */
        public enum StatsAction {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
Back to top