Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for Barnes (0.45 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom

      <scm>
        <url>https://github.com/hamcrest/JavaHamcrest</url>
        <connection>scm:git:******@****.***:hamcrest/JavaHamcrest.git</connection>
      </scm>
    
      <developers>
        <developer>
          <id>joe.walnes</id>
          <name>Joe Walnes</name>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <id>nat.pryce</id>
          <name>Nat Pryce</name>
          <roles>
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/response-directly.md

    ## Devolviendo una `Response` personalizada
    
    El ejemplo anterior muestra las partes que necesitas, pero no es muy útil todavía, dado que podrías simplemente devolver el `item` directamente, y **FastAPI** lo pondría en una `JSONResponse` por ti, convirtiéndolo en un `dict`, etc. Todo esto por defecto.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Jan 13 11:57:27 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  3. docs/pt/docs/deployment/https.md

        * Os conteúdos são criptografados, embora sejam enviados com o protocolo 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)
  4. docs/es/docs/index.md

    Python 3.8+
    
    FastAPI está sobre los hombros de gigantes:
    
    * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> para las partes web.
    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> para las partes de datos.
    
    ## Instalación
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 19K bytes
    - Viewed (0)
  5. docs/fr/docs/deployment/docker.md

    * Allez dans le répertoire de votre projet.
    * Créez un `Dockerfile` avec :
    
    ```Dockerfile
    FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
    
    COPY ./app /app
    ```
    
    ### Applications plus larges
    
    Si vous avez suivi la section sur la création d' [Applications avec plusieurs fichiers](../tutorial/bigger-applications.md){.internal-link target=_blank}, votre `Dockerfile` pourrait ressembler à ceci :
    
    ```Dockerfile
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 7.5K bytes
    - Viewed (0)
  6. docs/pt/docs/deployment.md

        * O conteúdo está encriptado, mesmo embora ele esteja sendo enviado com o protocolo HTTP.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Aug 18 16:16:54 GMT 2022
    - 16.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector objectSelector = 2;
    
      // ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
      // The policy cares about an operation if it matches _any_ Rule.
      // +listType=atomic
      // +optional
      repeated NamedRuleWithOperations resourceRules = 3;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

        var finished: Boolean = false,
      ) : Sink {
        /**
         * Buffer of outgoing data. This batches writes of small writes into this sink as larges frames
         * written to the outgoing connection. Batching saves the (small) framing overhead.
         */
        private val sendBuffer = Buffer()
    
        /** Trailers to send at the end of the stream. */
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Wed Apr 17 05:15:48 GMT 2024
    - 23.2K bytes
    - Viewed (1)
  9. docs/sts/web-identity.md

    By default, the temporary security credentials created by AssumeRoleWithWebIdentity last for one hour. However, the optional DurationSeconds parameter can be used to specify the validity duration of the generated credentials. This value varies from 900 seconds (15 minutes) up to the maximum session duration of 365 days.
    
    ## Configuring OpenID Identity Provider on MinIO
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  10. docs/pt/docs/async.md

    ## Detalhes Técnicos
    
    Versões modernas de Python tem suporte para **"código assíncrono"** usando algo chamado **"corrotinas"**, com sintaxe **`async` e `await`**.
    
    Vamos ver aquela frase por partes na seção abaixo:
    
    * **Código assíncrono**
    * **`async` e `await`**
    * **Corrotinas**
    
    ## Código assíncrono
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 22.2K bytes
    - Viewed (0)
Back to top