Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for etc (3.25 sec)

  1. docs/en/docs/benchmarks.md

        * If you are comparing Uvicorn, compare it against Daphne, Hypercorn, uWSGI, etc. Application servers.
    * **Starlette**:
        * Will have the next best performance, after Uvicorn. In fact, Starlette uses Uvicorn to run. So, it probably can only get "slower" than Uvicorn by having to execute more code.
        * But it provides you the tools to build simple web applications, with routing based on paths, etc.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
              - name: istio-certs
                mountPath: /etc/certs
                readOnly: true
              {{- end }}
              - mountPath: /var/lib/istio/data
                name: istio-data
              - name: podinfo
                mountPath: /etc/istio/pod
              {{- range $gateway.secretVolumes }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/concepts.md

    Here are some possible ideas:
    
    * An "Init Container" in Kubernetes that runs before your app container
    * A bash script that runs the previous steps and then starts your application
        * You would still need a way to start/restart *that* bash script, detect errors, etc.
    
    !!! tip
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 18K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/response-model.md

    `response_model` receives the same type you would declare for a Pydantic model field, so, it can be a Pydantic model, but it can also be, e.g. a `list` of Pydantic models, like `List[Item]`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 17.9K bytes
    - Viewed (0)
  5. docs/fr/docs/advanced/response-directly.md

    # Renvoyer directement une réponse
    
    Lorsque vous créez une *opération de chemins* **FastAPI**, vous pouvez normalement retourner n'importe quelle donnée : un `dict`, une `list`, un modèle Pydantic, un modèle de base de données, etc.
    
    Par défaut, **FastAPI** convertirait automatiquement cette valeur de retour en JSON en utilisant le `jsonable_encoder` expliqué dans [JSON Compatible Encoder](../tutorial/encoder.md){.internal-link target=_blank}.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  6. docs/en/docs/features.md

    * API keys in:
        * Headers.
        * Query parameters.
        * Cookies, etc.
    
    Plus all the security features from Starlette (including **session cookies**).
    
    All built as reusable tools and components that are easy to integrate with your systems, data stores, relational and NoSQL databases, etc.
    
    ### Dependency Injection
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  7. docs/pt/docs/features.md

    * Chaves de API em:
        * Headers.
        * parâmetros da Query.
        * Cookies etc.
    
    Além disso, todos os recursos de seguranças do Starlette (incluindo **cookies de sessão**).
    
    Tudo construído como ferramentas e componentes reutilizáveis que são fáceis de integrar com seus sistemas, armazenamento de dados, banco de dados relacionais e não-relacionais etc.
    
    ### Injeção de dependência
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
              - name: istio-certs
                mountPath: /etc/certs
                readOnly: true
              {{- end }}
              - mountPath: /var/lib/istio/data
                name: istio-data
              - name: podinfo
                mountPath: /etc/istio/pod
              {{- range $gateway.secretVolumes }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (1)
  9. docs/en/docs/tutorial/dependencies/index.md

    ## **FastAPI** compatibility
    
    The simplicity of the dependency injection system makes **FastAPI** compatible with:
    
    * all the relational databases
    * NoSQL databases
    * external packages
    * external APIs
    * authentication and authorization systems
    * API usage monitoring systems
    * response data injection systems
    * etc.
    
    ## Simple and Powerful
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  10. docs/fr/docs/features.md

    * Clés d'API dans:
        * Le header.
        * Les paramètres de requêtes.
        * Les cookies, etc.
    
    Plus toutes les fonctionnalités de sécurités venant de Starlette (incluant les **cookies de sessions**).
    
    Le tout conçu en composant réutilisable facilement intégrable à vos systèmes, data stores, base de données relationnelle ou NoSQL, etc.
    
    ### Injection de dépendances
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.1K bytes
    - Viewed (0)
Back to top