Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for noso (0.12 sec)

  1. src/main/resources/fess_indices/fess/pt/stopwords.txt

    numa
    pelos
    elas
    qual
    nós
    lhe
    deles
    essas
    esses
    pelas
    este
    dele
    tu
    te
    vocês
    vos
    lhes
    meus
    minhas
    teu
    tua
    teus
    tuas
    nosso
    nossa
    nossos
    nossas
    dela
    delas
    esta
    estes
    estas
    aquele
    aquela
    aqueles
    aquelas
    isto
    aquilo
    estou
    está
    estamos
    estão
    estive
    esteve
    estivemos
    estiveram
    estava
    estávamos
    estavam
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  2. docs/pt/docs/history-design-future.md

    <blockquote markdown="1">
    
    **FastAPI** não existiria se não pelo trabalho anterior de outros.
    
    Há muitas ferramentas criadas antes que ajudaram a inspirar sua criação.
    
    Eu estive evitando a criação de um novo _framework_ por vários anos. Primeiro tentei resolver todas as funcionalidades cobertas por **FastAPI** usando muitos _frameworks_, _plug-ins_ e ferramentas diferentes.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/security/first-steps.md

    Você verá algo deste tipo:
    
    <img src="/img/tutorial/security/image01.png">
    
    !!! check "Botão de Autorizar!"
    	Você já tem um novo "botão de autorizar!".
    
    	E seu *path operation* tem um pequeno cadeado no canto superior direito que você pode clicar.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  4. docs/pt/docs/advanced/events.md

    No nosso exemplo de código acima, nós não usamos ele diretamente, mas nós passamos para o FastAPI para ele usá-lo.
    
    O parâmetro `lifespan` da aplicação `FastAPI` usa um **Gerenciador de Contexto Assíncrono**, então nós podemos passar nosso novo gerenciador de contexto assíncrono do `lifespan` para ele.
    
    ```Python hl_lines="22"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/body-nested-models.md

    ```Python
    from typing import List
    
    my_list: List[str]
    ```
    
    Essa é a sintaxe padrão do Python para declarações de tipo.
    
    Use a mesma sintaxe padrão para atributos de modelo com tipos internos.
    
    Portanto, em nosso exemplo, podemos fazer com que `tags` sejam especificamente uma "lista de strings":
    
    
    ```Python hl_lines="14"
    {!../../../docs_src/body_nested_models/tutorial002.py!}
    ```
    
    ## Tipo "set"
    
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  6. docs/pt/docs/deployment/docker.md

    * <a href="https://hub.docker.com/_/redis" class="external-link" target="_blank">Redis</a>, etc.
    
    Usando imagens de contêiner pré-prontas é muito fácil **combinar** e usar diferentes ferramentas. Por exemplo, para testar um novo banco de dados. Em muitos casos, você pode usar as **imagens oficiais** precisando somente de variáveis de ambiente para configurá-las.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  7. docs/pt/docs/async.md

    Depois, ele 🤖 pega a primeira tarefa para finalizar (vamos dizer, nosso "arquivo lento" 📝) e continua o que ele tem que fazer com isso.
    
    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. guava-tests/test/com/google/common/io/ByteStreamsTest.java

        // create a null output stream
        OutputStream nos = ByteStreams.nullOutputStream();
        // write to the output stream
        nos.write('n');
        String test = "Test string for NullOutputStream";
        byte[] bytes = test.getBytes(Charsets.US_ASCII);
        nos.write(bytes);
        nos.write(bytes, 2, 10);
        nos.write(bytes, bytes.length - 5, 5);
        // nothing really to assert?
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 21.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/ByteStreamsTest.java

        // create a null output stream
        OutputStream nos = ByteStreams.nullOutputStream();
        // write to the output stream
        nos.write('n');
        String test = "Test string for NullOutputStream";
        byte[] bytes = test.getBytes(Charsets.US_ASCII);
        nos.write(bytes);
        nos.write(bytes, 2, 10);
        nos.write(bytes, bytes.length - 5, 5);
        // nothing really to assert?
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 21.9K bytes
    - Viewed (0)
  10. docs/pt/docs/index.md

    Agora vá para <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    
    * A documentação interativa da API será automaticamente atualizada, incluindo o novo corpo:
    
    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    * Clique no botão "Try it out", ele permitirá que você preencha os parâmetros e interaja diretamente com a API:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 18.6K bytes
    - Viewed (0)
Back to top