Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for predefinida (0.04 sec)

  1. docs/pt/docs/deployment/manually.md

    ///
    
    ## Conceitos de Implantação { #deployment-concepts }
    
    Esses exemplos executam o programa do servidor (por exemplo, Uvicorn), iniciando **um único processo**, ouvindo em todos os IPs (`0.0.0.0`) em uma porta predefinida (por exemplo, `80`).
    
    Esta é a ideia básica. Mas você provavelmente vai querer cuidar de algumas coisas adicionais, como:
    
    * Segurança - HTTPS
    * Executando na inicialização
    * Reinicializações
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/additional-responses.md

    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Combinar retornos predefinidos e personalizados { #combine-predefined-responses-and-custom-ones }
    
    Você pode querer possuir alguns retornos predefinidos que são aplicados para diversas *operações de rota*, porém você deseja combinar com retornos personalizados que são necessários para cada *operação de rota*.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/path-params.md

    La primera siempre será utilizada ya que el path coincide primero.
    
    ## Valores predefinidos { #predefined-values }
    
    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 – Enumeración">`Enum`</abbr> estándar de Python.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/path-params.md

    A primeira sempre será usada, já que o path corresponde primeiro.
    
    ## Valores predefinidos { #predefined-values }
    
    Se você tem uma *operação de rota* que recebe um *parâmetro de path*, mas quer que os valores válidos possíveis do *parâmetro de path* sejam predefinidos, você pode usar um <abbr title="Enumeration">`Enum`</abbr> padrão do Python.
    
    ### Crie uma classe `Enum` { #create-an-enum-class }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  5. docs/es/docs/advanced/additional-responses.md

    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Combina responses predefinidos y personalizados { #combine-predefined-responses-and-custom-ones }
    
    Es posible que desees tener algunos responses predefinidos que se apliquen a muchas *path operations*, pero que quieras combinarlos con responses personalizados necesarios por cada *path operation*.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  6. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 09:16:23 UTC 2025
    - 46.6K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial003b_py39.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 Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/Resources.java

       *
       * @param url the URL to read from
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
       * @return a string containing all the characters from the URL
       * @throws IOException if an I/O error occurs.
       */
      public static String toString(URL url, Charset charset) throws IOException {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/Files.java

       *
       * @param file the file to read from
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
       * @return the buffered reader
       */
      public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException {
        checkNotNull(file);
        checkNotNull(charset);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 25 20:24:13 UTC 2025
    - 32.8K bytes
    - Viewed (0)
  10. 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 Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top