Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for nora (0.04 sec)

  1. docs/pt/docs/project-generation.md

        * Construção multi-estágio Docker, então você não precisa salvar ou _commitar_ código compilado.
        * Testes _frontend_ rodados na hora da construção (pode ser desabilitado também).
        * Feito tão modular quanto possível, então ele funciona fora da caixa, mas você pode gerar novamente com Vue CLI ou criar conforme você queira, e reutilizar o que quiser.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. fastapi/cli.py

            message = 'To use the fastapi command, please install "fastapi[standard]":\n\n\tpip install "fastapi[standard]"\n'
            print(message)
            raise RuntimeError(message)  # noqa: B904
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Aug 02 06:03:05 UTC 2024
    - 418 bytes
    - Viewed (0)
  3. fastapi/param_functions.py

    from fastapi import params
    from fastapi._compat import Undefined
    from fastapi.openapi.models import Example
    from typing_extensions import Annotated, Doc, deprecated
    
    _Unset: Any = Undefined
    
    
    def Path(  # noqa: N802
        default: Annotated[
            Any,
            Doc(
                """
                Default value if the parameter field is not set.
    
                This doesn't affect `Path` parameters as the value is always required.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 23 18:30:18 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            }
    
            @Override
            public ModelSource resolve(ModelLocator locator, String relative) {
                String norm = relative.replace('\\', File.separatorChar).replace('/', File.separatorChar);
                Path path = getPath().getParent().resolve(norm);
                Path relatedPom = locator.locateExistingPom(path);
                if (relatedPom != null) {
                    return ModelSource.fromPath(relatedPom);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/settings.md

    ///
    
    Uma <a href="https://pt.wikipedia.org/wiki/Variável_de_ambiente" class="external-link" target="_blank">variável de ambiente</a> (abreviada em inglês para "env var") é uma variável definida fora do código Python, no sistema operacional, e pode ser lida pelo seu código Python (ou por outros programas).
    
    Você pode criar e utilizar variáveis de ambiente no terminal, sem precisar utilizar Python:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. docs/pt/docs/advanced/additional-responses.md

    ```Python hl_lines="18  22"
    {!../../docs_src/additional_responses/tutorial001.py!}
    ```
    
    /// note | "Nota"
    
    Lembre-se que você deve retornar o `JSONResponse` diretamente.
    
    ///
    
    /// info | "Informação"
    
    A chave `model` não é parte do OpenAPI.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/cookie-param-models.md

    Isso lhe permitiria **reutilizar o modelo** em **diversos lugares** e também declarar validações e metadata para todos os parâmetros de uma vez. 😎
    
    /// note | Nota
    
    Isso é suportado desde a versão `0.115.0` do FastAPI. 🤓
    
    ///
    
    /// tip | Dica
    
    Essa mesma técnica se aplica para `Query`, `Cookie`, e `Header`. 😎
    
    ///
    
    ## Cookies com Modelos Pydantic
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 07 20:18:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. docs/pt/docs/python-types.md

    O **FastAPI** é baseado nesses type hints, eles oferecem muitas vantagens e benefícios.
    
    Mas mesmo que você nunca use o **FastAPI**, você se beneficiaria de aprender um pouco sobre eles.
    
    /// note | Nota
    
    Se você é um especialista em Python e já sabe tudo sobre type hints, pule para o próximo capítulo.
    
    ///
    
    ## Motivação
    
    Vamos começar com um exemplo simples:
    
    ```Python
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 15 12:32:27 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. fastapi/dependencies/utils.py

            return False
        dunder_call = getattr(call, "__call__", None)  # noqa: B004
        return inspect.iscoroutinefunction(dunder_call)
    
    
    def is_async_gen_callable(call: Callable[..., Any]) -> bool:
        if inspect.isasyncgenfunction(call):
            return True
        dunder_call = getattr(call, "__call__", None)  # noqa: B004
        return inspect.isasyncgenfunction(dunder_call)
    
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 21:46:26 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. fastapi/_compat.py

        from pydantic import AnyUrl as Url  # noqa: F401
        from pydantic import (  # type: ignore[assignment]
            BaseConfig as BaseConfig,  # noqa: F401
        )
        from pydantic import ValidationError as ValidationError  # noqa: F401
        from pydantic.class_validators import (  # type: ignore[no-redef]
            Validator as Validator,  # noqa: F401
        )
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 09:36:32 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top