Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 641 - 650 of 1,005 for trip (0.02 seconds)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java

            }
    
            Element relativePathElement = parentElement.child(RELATIVE_PATH).orElse(null);
            String currentRelativePath =
                    relativePathElement != null ? relativePathElement.textContent().trim() : DEFAULT_PARENT_RELATIVE_PATH;
    
            // Try to find the correct parent POM
            String parentGroupId = parentElement.childText(MavenPomElements.Elements.GROUP_ID);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 22.2K bytes
    - Click Count (0)
  2. docs/fr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    Ces dépendances seront exécutées/résolues de la même manière que des dépendances normales. Mais leur valeur (si elles en retournent une) ne sera pas transmise à votre *fonction de chemin d'accès*.
    
    /// tip | Astuce
    
    Certains éditeurs vérifient les paramètres de fonction non utilisés et les signalent comme des erreurs.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/advanced/json-base64-bytes.md

    <div class="screenshot">
    <img src="/img/tutorial/json-base64-bytes/image01.png">
    </div>
    
    你可以發送如下的請求:
    
    ```json
    {
        "description": "Some data",
        "data": "aGVsbG8="
    }
    ```
    
    /// tip
    
    `aGVsbG8=` 是 `hello` 的 base64 編碼。
    
    ///
    
    接著 Pydantic 會將該 base64 字串解碼,並在模型的 `data` 欄位中提供原始位元組。
    
    你會收到類似以下的回應:
    
    ```json
    {
      "description": "Some data",
      "content": "hello"
    }
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:33:04 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  4. docs/ru/docs/advanced/strict-content-type.md

    Он предоставляет API по адресу
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    Есть также фронтенд по адресу
    
    ```
    http://localhost:8000
    ```
    
    /// tip | Совет
    
    Обратите внимание, что у обоих один и тот же хост.
    
    ///
    
    Через фронтенд вы можете заставлять ИИ-агента выполнять действия от вашего имени.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  5. docs/en/docs/deployment/docker.md

    Using Linux containers has several advantages including **security**, **replicability**, **simplicity**, and others.
    
    /// tip
    
    In a hurry and already know this stuff? Jump to the [`Dockerfile` below 👇](#build-a-docker-image-for-fastapi).
    
    ///
    
    <details>
    <summary>Dockerfile Preview 👀</summary>
    
    ```Dockerfile
    FROM python:3.14
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 28.3K bytes
    - Click Count (1)
  6. docs/ja/docs/tutorial/path-params.md

    `str` を継承することで、APIドキュメントは値が `string` 型でなければいけないことを知り、正確にレンダリングできるようになります。
    
    そして、固定値のクラス属性を作ります。すると、その値が使用可能な値となります:
    
    {* ../../docs_src/path_params/tutorial005_py310.py hl[1,6:9] *}
    
    /// tip | 豆知識
    
    "AlexNet"、"ResNet"そして"LeNet"は機械学習<dfn title="厳密には、Deep Learning のモデルアーキテクチャ">モデル</dfn>の名前です。
    
    ///
    
    ### *パスパラメータ*の宣言 { #declare-a-path-parameter }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  7. docs/en/docs/advanced/advanced-dependencies.md

    ```
    
    ...and pass whatever that returns as the value of the dependency in our *path operation function* as the parameter `fixed_content_included`:
    
    {* ../../docs_src/dependencies/tutorial011_an_py310.py hl[22] *}
    
    /// tip
    
    All this might seem contrived. And it might not be very clear how is it useful yet.
    
    These examples are intentionally simple, but show how it all works.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9K bytes
    - Click Count (0)
  8. docs/uk/docs/advanced/strict-content-type.md

    Він надає API за адресою
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    Є також фронтенд за адресою
    
    ```
    http://localhost:8000
    ```
    
    /// tip | Порада
    
    Зауважте, що обидва мають один і той самий хост.
    
    ///
    
    Використовуючи фронтенд, ви можете змушувати AI-агента виконувати дії від вашого імені.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:25:54 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  9. android/guava-tests/test/com/google/common/io/ResourcesTest.java

    /**
     * Unit test for {@link Resources}.
     *
     * @author Chris Nokleberg
     */
    
    @NullUnmarked
    public class ResourcesTest extends IoTestCase {
    
      @AndroidIncompatible // wouldn't run anyway, but strip the source entirely because of b/230620681
      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
        suite.addTest(
            ByteSourceTester.tests(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/cookie-param-models.md

    /// note | Remarque
    
    Ceci est pris en charge depuis la version `0.115.0` de FastAPI. 🤓
    
    ///
    
    /// tip | Astuce
    
    Cette même technique s'applique à `Query`, `Cookie` et `Header`. 😎
    
    ///
    
    ## Déclarer des cookies avec un modèle Pydantic { #cookies-with-a-pydantic-model }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 3.6K bytes
    - Click Count (0)
Back to Top