Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 1,778 for exemple (1.54 seconds)

  1. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    #### Non-calculated values
    
    These are inappropriate uses of lazy types:
    
    ```groovy
    class Example {
        Property<String> getSomeProperty()
    
        Example() {
            getSomeProperty().set("value")
            getSomeProperty().disallowChanges()
        }
    }
    
    class Example2 {
        Provider<String> getSomeProperty() {
            return project.provider(() -> "value")
        }
    }
    ```
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  2. docs/en/docs/_llm-test.md

    See for example section `### Quotes` in `docs/de/llm-prompt.md`.
    
    ////
    
    ## Quotes in code snippets { #quotes-in-code-snippets }
    
    //// tab | Test
    
    `pip install "foo[bar]"`
    
    Examples for string literals in code snippets: `"this"`, `'that'`.
    
    A difficult example for string literals in code snippets: `f"I like {'oranges' if orange else "apples"}"`
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 11K bytes
    - Click Count (0)
  3. docs/pt/docs/alternatives.md

    É por isso que, como dito no site oficial:
    
    > Requests é um dos pacotes Python mais baixados de todos os tempos
    
    O jeito de usar é muito simples. Por exemplo, para fazer uma requisição `GET`, você escreveria:
    
    ```Python
    response = requests.get("http://example.com/some/url")
    ```
    
    A contra-parte na aplicação FastAPI, a operação de rota, poderia ficar assim:
    
    ```Python hl_lines="1"
    @app.get("/some/url")
    def read_url():
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 24.5K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/body-fields.md

    You will learn more about adding extra information later in the docs, when learning to declare examples.
    
    /// warning
    
    Extra keys passed to `Field` will also be present in the resulting OpenAPI schema for your application.
    As these keys may not necessarily be part of the OpenAPI specification, some OpenAPI tools, for example [the OpenAPI validator](https://validator.swagger.io/), may not work with your generated schema.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Aug 31 09:15:41 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  5. tests/test_file_and_form_order_issue_9116.py

    
    client = TestClient(app)
    
    
    @pytest.fixture
    def tmp_file_1(tmp_path: Path) -> Path:
        f = tmp_path / "example1.txt"
        f.write_text("foo")
        return f
    
    
    @pytest.fixture
    def tmp_file_2(tmp_path: Path) -> Path:
        f = tmp_path / "example2.txt"
        f.write_text("bar")
        return f
    
    
    @pytest.mark.parametrize("endpoint_path", ("/file_before_form", "/file_after_form"))
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A {@link ListenableFuture} that supports fluent chains of operations. For example:
     *
     * {@snippet :
     * ListenableFuture<Boolean> adminIsLoggedIn =
     *     FluentFuture.from(usersDatabase.getAdminUser())
     *         .transform(User::getId, directExecutor())
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 19.8K bytes
    - Click Count (0)
  7. docs/es/docs/advanced/additional-responses.md

    **FastAPI** mantendrá la información adicional de `responses` y la combinará con el JSON Schema de tu modelo.
    
    Por ejemplo, puedes declarar un response con un código de estado `404` que usa un modelo Pydantic y tiene una `description` personalizada.
    
    Y un response con un código de estado `200` que usa tu `response_model`, pero incluye un `example` personalizado:
    
    {* ../../docs_src/additional_responses/tutorial003_py310.py hl[20:31] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  8. docs/uk/llm-prompt.md

    Language code: uk.
    
    ### Grammar and tone
    
    - Use polite/formal address consistent with existing Ukrainian docs (use “ви/ваш”).
    - Keep the tone concise and technical.
    - Use one style of dashes. For example, if text contains "-" then use only this symbol to represent a dash.
    
    ### Headings
    
    - Follow existing Ukrainian heading style; keep headings short and instructional.
    - Do not add trailing punctuation to headings.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 04 16:47:51 GMT 2026
    - 4K bytes
    - Click Count (0)
  9. docs/pt/docs/deployment/docker.md

    Por exemplo, há uma [Imagem Python](https://hub.docker.com/_/python) oficial.
    
    E existe muitas outras imagens para diferentes coisas, como bancos de dados, por exemplo:
    
    * [PostgreSQL](https://hub.docker.com/_/postgres)
    * [MySQL](https://hub.docker.com/_/mysql)
    * [MongoDB](https://hub.docker.com/_/mongo)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/security/oauth2-jwt.md

    Então, para evitar colisões de ID, ao criar o token JWT para o usuário, você poderia prefixar o valor da chave `sub`, por exemplo, com `username:`. Assim, neste exemplo, o valor de `sub` poderia ser: `username:johndoe`.
    
    O importante a se lembrar é que a chave `sub` deve ter um identificador único em toda a aplicação e deve ser uma string.
    
    ## Verifique { #check-it }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 11.6K bytes
    - Click Count (0)
Back to Top