Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for delay (0.71 sec)

  1. docs/en/docs/js/termynal.js

         * @param {string} options.prefix - Prefix to use for data attributes.
         * @param {number} options.startDelay - Delay before animation, in ms.
         * @param {number} options.typeDelay - Delay between each typed character, in ms.
         * @param {number} options.lineDelay - Delay between each line, in ms.
         * @param {number} options.progressLength - Number of characters displayed as progress bar.
    JavaScript
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 9.3K bytes
    - Viewed (0)
  2. docs/en/docs/js/custom.js

                                }
                            });
                            dataValue = {};
                            if (isBlankSpace) {
                                dataValue["delay"] = 0;
                            }
                            if (buffer[buffer.length - 1] === "") {
                                // A last single <br> won't have effect
                                // so put an additional one
    JavaScript
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat May 08 17:50:56 GMT 2021
    - 6.6K bytes
    - Viewed (0)
  3. .github/workflows/issue-manager.yml

              config: >
                {
                  "answered": {
                    "delay": 864000,
                    "message": "Assuming the original need was handled, this will be automatically closed now. But feel free to add more comments or create new issues or PRs."
                  },
                  "changes-requested": {
                    "delay": 2628000,
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Jan 30 18:46:56 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  4. docs/tr/docs/async.md

    ```Python hl_lines="2-3"
    @app.get('/burgers')
    async def read_burgers():
        burgers = await get_burgers(2)
        return burgers
    ```
    
    ### Daha fazla teknik detay
    
    `await` in yalnızca `async def` ile tanımlanan fonksıyonların içinde kullanılabileceğini fark etmişsinizdir.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/index.md

    Na próxima seção você verá outras opções, configurações, e recursos adicionais.
    
    !!! tip "Dica"
        As próximas seções **não são necessáriamente "avançadas"**
    
        E é possível que para seu caso de uso, a solução esteja em uma delas.
    
    ## Leia o Tutorial primeiro
    
    Você ainda pode usar a maior parte dos recursos no **FastAPI** com o conhecimento do [Tutorial - Guia de Usuário](../tutorial/index.md){.internal-link target=_blank}.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  6. docs/pt/docs/external-links.md

    # Links externos e Artigos
    
    **FastAPI** tem uma grande comunidade em crescimento constante.
    
    Existem muitas postagens, artigos, ferramentas e projetos relacionados ao **FastAPI**.
    
    Aqui tem uma lista, incompleta, de algumas delas.
    
    !!! tip "Dica"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Oct 22 07:35:13 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  7. docs/pt/docs/async.md

    ### Sub-dependências
    
    Você pode ter múltiplas dependências e sub-dependências exigindo uma a outra (como parâmetros de definições de funções), algumas delas podem ser criadas com `async def` e algumas com `def` normal. Isso ainda poderia funcionar, e aquelas criadas com `def` podem ser chamadas em uma thread externa ao invés de serem "aguardadas".
    
    ### Outras funções de utilidade
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/query-params-str-validations.md

    !!! note "Observação"
        Tenha em mente que cada ferramenta oferece diferentes níveis de suporte ao OpenAPI.
    
        Algumas delas não exibem todas as informações extras que declaramos, ainda que na maioria dos casos, esses recursos estão planejados para desenvolvimento.
    
    Você pode adicionar um `title`:
    
    ```Python hl_lines="10"
    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)
  9. docs/pt/docs/alternatives.md

    # Alternativas, Inspiração e Comparações
    
    O que inspirou **FastAPI**, como ele se compara a outras alternativas e o que FastAPI aprendeu delas.
    
    ## Introdução
    
    **FastAPI** não poderia existir se não fosse pelos trabalhos anteriores de outras pessoas.
    
    Houveram tantas ferramentas criadas que ajudaram a inspirar sua criação.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  10. docs/tr/docs/alternatives.md

        **FastAPI** uygulamalarını çalıştırmak için ana web sunucusu Uvicorn!
    
        Gunicorn ile birleştirdiğinizde asenkron ve çoklu işlem destekleyen bir sunucu elde ediyorsunuz!
    
        Daha fazla detay için [Deployment](deployment/index.md){.internal-link target=_blank} bölümünü inceleyebilirsiniz.
    
    ## Karşılaştırma ve Hız
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 28.8K bytes
    - Viewed (0)
Back to top