Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for gabe (0.14 sec)

  1. docs/de/docs/history-design-future.md

    Es war beispielsweise klar, dass es idealerweise auf Standard-Python-Typhinweisen basieren sollte.
    
    Der beste Ansatz bestand außerdem darin, bereits bestehende Standards zu nutzen.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:10:48 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/response-status-code.md

    !!! note "Nota"
        Alguns códigos de resposta (consulte a próxima seção) indicam que a resposta não possui um corpo.
    
        O FastAPI sabe disso e produzirá documentos OpenAPI informando que não há corpo de resposta.
    
    ## Sobre os códigos de status HTTP
    
    !!! note "Nota"
        Se você já sabe o que são códigos de status HTTP, pule para a próxima seção.
    
    Em HTTP, você envia um código de status numérico de 3 dígitos como parte da resposta.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Mon Oct 31 16:22:07 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/response-change-status-code.md

    contiene el valor que retornaste, filtrado por cualquier `response_model`.
    
    También puedes declarar la dependencia del parámetro `Response`, y establecer el código de estado en ellos. Pero ten en cuenta que el último en establecerse será el que gane....
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Feb 06 19:56:23 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/de/stopwords.txt

    einen
    einer
    eines
    einig
    einige
    einigem
    einigen
    einiger
    einiges
    einmal
    er
    ihn
    ihm
    es
    etwas
    euer
    eure
    eurem
    euren
    eurer
    eures
    für
    gegen
    gewesen
    hab
    habe
    haben
    hat
    hatte
    hatten
    hier
    hin
    hinter
    ich
    mich
    mir
    ihr
    ihre
    ihrem
    ihren
    ihrer
    ihres
    euch
    im
    in
    indem
    ins
    ist
    jede
    jedem
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  5. docs/pt/docs/deployment/https.md

    * A criptografia da conexão acontece no nível TCP.
        * Essa é uma camada abaixo do HTTP.
        * Portanto, o manuseio do certificado e da criptografia é feito antes do HTTP.
    * O TCP não sabe sobre "domínios". Apenas sobre endereços IP.
        * As informações sobre o domínio solicitado vão nos dados HTTP.
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Oct 05 10:40:05 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/dataclasses.md

    # Verwendung von Datenklassen
    
    FastAPI basiert auf **Pydantic** und ich habe Ihnen gezeigt, wie Sie Pydantic-Modelle verwenden können, um Requests und Responses zu deklarieren.
    
    Aber FastAPI unterstützt auf die gleiche Weise auch die Verwendung von <a href="https://docs.python.org/3/library/dataclasses.html" class="external-link" target="_blank">`dataclasses`</a>:
    
    ```Python hl_lines="1  7-12  19-20"
    {!../../../docs_src/dataclasses/tutorial001.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:18:23 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/background-tasks.md

    O **FastAPI** sabe o que fazer em cada caso e como reutilizar o mesmo objeto, de forma que todas as tarefas em segundo plano sejam mescladas e executadas em segundo plano posteriormente:
    
    ```Python hl_lines="13  15  22  25"
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Mon May 09 23:44:32 GMT 2022
    - 5.3K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/SocksProxy.kt

      }
    
      fun connectionCount(): Int = connectionCount.get()
    
      fun shutdown() {
        serverSocket!!.close()
        executor.shutdown()
        if (!executor.awaitTermination(5, TimeUnit.SECONDS)) {
          throw IOException("Gave up waiting for executor to shut down")
        }
      }
    
      private fun service(from: Socket) {
        val name = "SocksProxy ${from.remoteSocketAddress}"
        threadName(name) {
          try {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  9. docs/de/docs/deployment/manually.md

    * Neustarts
    * Replikation (die Anzahl der laufenden Prozesse)
    * Arbeitsspeicher
    * Schritte vor dem Start
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:16:35 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/policy/v1/generated.proto

      // if they encounter an unrecognized policy in this field.
      //
      // This field is beta-level. The eviction API uses this field when
      // the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default).
      // +optional
      optional string unhealthyPodEvictionPolicy = 4;
    }
    
    // PodDisruptionBudgetStatus represents information about the status of a
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
Back to top