Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for Ocenas (0.34 sec)

  1. docs/pt/docs/tutorial/background-tasks.md

    ```
    
    O **FastAPI** criará o objeto do tipo `BackgroundTasks` para você e o passará como esse parâmetro.
    
    ## Criar uma função de tarefa
    
    Crie uma função a ser executada como tarefa em segundo plano.
    
    É apenas uma função padrão que pode receber parâmetros.
    
    Pode ser uma função `async def` ou `def` normal, o **FastAPI** saberá como lidar com isso corretamente.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon May 09 23:44:32 GMT 2022
    - 5.3K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/events.md

    
    Isso é que nós iremos resolver, vamos carregar o modelo antes das requisições serem manuseadas, mas apenas um pouco antes da aplicação começar a receber requisições, não enquanto o código estiver sendo carregado.
    
    ## Vida útil (_Lifespan_)
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/sds/util.go

    func NewSecretItemBuilder() SecretItemBuilder {
    	return &secretItemBuilder{}
    }
    
    // SecretItemBuilder wraps the process of setting fields for the SecretItem
    // and builds the Metadata fields from the cert contents behind the scenes
    type SecretItemBuilder interface {
    	Name(string) SecretItemBuilder
    	Data(string) SecretItemBuilder
    	Source(string) SecretItemBuilder
    	Destination(string) SecretItemBuilder
    	State(string) SecretItemBuilder
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jun 06 15:14:48 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  4. docs/pt/docs/advanced/templates.md

    
    !!! note "Detalhes Técnicos"
        Você também poderia usar `from starlette.templating import Jinja2Templates`.
    
        **FastAPI** fornece o mesmo `starlette.templating` como `fastapi.templating` apenas como uma conveniência para você, o desenvolvedor. Mas a maioria das respostas disponíveis vêm diretamente do Starlette. O mesmo acontece com `Request` e `StaticFiles`.
    
    ## Escrevendo Templates
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Mar 28 04:05:17 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/query-params-str-validations.md

        = None
        ```
    
        Ou com:
    
        ```Python
        = Query(default=None)
        ```
    
        E irá utilizar o `None` para detectar que o parâmetro de consulta não é obrigatório.
    
        O `Union` é apenas para permitir que seu editor de texto lhe dê um melhor suporte.
    
    Então, podemos passar mais parâmetros para `Query`. Neste caso, o parâmetro `max_length` que se aplica a textos:
    
    ```Python
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 9.3K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/body-nested-models.md

        "price": 42.0,
        "tax": 3.2,
        "tags": ["rock", "metal", "bar"],
        "image": {
            "url": "http://example.com/baz.jpg",
            "name": "The Foo live"
        }
    }
    ```
    
    Novamente, apenas fazendo essa declaração, com o **FastAPI**, você ganha:
    
    * Suporte do editor de texto (compleção, etc), inclusive para modelos aninhados
    * Conversão de dados
    * Validação de dados
    * Documentação automatica
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  7. docs/en/data/external_links.yml

        link: https://www.azepug.az/posts/fastapi/#building-simple-e-commerce-with-nuxtjs-and-fastapi-series
        title: Building simple E-Commerce with NuxtJS and FastAPI
      - author: Rodrigo Arenas
        author_link: https://rodrigo-arenas.medium.com/
        link: https://medium.com/analytics-vidhya/serve-a-machine-learning-model-using-sklearn-fastapi-and-docker-85aabf96729b
        title: "Serve a machine learning model using Sklearn, FastAPI and Docker"
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  8. lib/time/zoneinfo.zip

    America/North_Dakota/New_Salem America/Nuuk America/Ojinaga America/Panama America/Pangnirtung America/Paramaribo America/Phoenix America/Port-au-Prince America/Port_of_Spain America/Porto_Acre America/Porto_Velho America/Puerto_Rico America/Punta_Arenas America/Rainy_River America/Rankin_Inlet America/Recife America/Regina America/Resolute America/Rio_Branco America/Rosario America/Santa_Isabel America/Santarem America/Santiago America/Santo_Domingo America/Sao_Paulo America/Scoresbysund America/Shiprock...
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 392.3K bytes
    - Viewed (1)
  9. docs/pt/docs/contributing.md

    E existem ferramentas/_scripts_ extras para controlar as traduções em `./scripts/docs.py`.
    
    !!! tip
        Você não precisa ver o código em `./scripts/docs.py`, você apenas o utiliza na linha de comando.
    
    Toda a documentação está no formato Markdown no diretório `./docs/pt/`.
    
    Muitos dos tutoriais tem blocos de código.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 14.9K bytes
    - Viewed (0)
  10. docs/pt/docs/index.md

    Você faz com tipos padrão do Python moderno.
    
    Você não terá que aprender uma nova sintaxe, métodos ou classes de uma biblioteca específica etc.
    
    Apenas **Python** padrão.
    
    Por exemplo, para um `int`:
    
    ```Python
    item_id: int
    ```
    
    ou para um modelo mais complexo, `Item`:
    
    ```Python
    item: Item
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 18.6K bytes
    - Viewed (0)
Back to top