Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 531 - 540 of 599 for lastTest (0.17 seconds)

  1. docs/uk/docs/tutorial/bigger-applications.md

    Ви також можете використовувати `.include_router()` кілька разів з одним і тим самим router'ом, але з різними префіксами.
    
    Це може бути корисно, наприклад, щоб публікувати той самий API під різними префіксами, наприклад `/api/v1` і `/api/latest`.
    
    Це просунуте використання, яке вам може й не знадобитися, але воно є на випадок, якщо потрібно.
    
    ## Включіть один `APIRouter` до іншого { #include-an-apirouter-in-another }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 27.4K bytes
    - Click Count (0)
  2. docs/ja/docs/alternatives.md

    /// check | **FastAPI**へ与えたインスピレーション
    
    コードで「スキーマ」を定義し、データの型やバリデーションを自動で提供する点。
    
    ///
    
    ### [Webargs](https://webargs.readthedocs.io/en/latest/) { #webargs }
    
    APIに求められる他の大きな機能として、<dfn title="Pythonデータへの読み込みと変換">受信したリクエストデータのパース</dfn>があります。
    
    WebargsはFlaskをはじめとするいくつかのフレームワークの上にそれを提供するために作られたツールです。
    
    データのバリデーションを行うために内部ではMarshmallowを使用しており、同じ開発者によって作られました。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  3. cmd/metacache-entries_test.go

    			wantSelected: &inputSerialized[2],
    			wantOk:       true,
    		},
    		{
    			// inputSerialized[1] have older versions of the second in inputSerialized[2], but
    			// since it is not strict, we should get it that one (with latest modtime)
    			name:         "modtimemismatch,not strict",
    			m:            metaCacheEntries{inputSerialized[1], inputSerialized[1], inputSerialized[2], inputSerialized[2]},
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 31.6K bytes
    - Click Count (0)
  4. docs/en/docs/virtual-environments.md

    ///
    
    If you are using `pip` to install packages (it comes by default with Python), you should **upgrade** it to the latest version.
    
    Many exotic errors while installing a package are solved by just upgrading `pip` first.
    
    /// tip
    
    You would normally do this **once**, right after you create the virtual environment.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 22.1K bytes
    - Click Count (0)
  5. docs/ko/docs/tutorial/bigger-applications.md

    ## 같은 router를 다른 `prefix`로 여러 번 포함하기 { #include-the-same-router-multiple-times-with-different-prefix }
    
    `.include_router()`를 사용해 *같은* router를 서로 다른 prefix로 여러 번 포함할 수도 있습니다.
    
    예를 들어 `/api/v1`과 `/api/latest`처럼 서로 다른 prefix로 동일한 API를 노출할 때 유용할 수 있습니다.
    
    이는 고급 사용 방식이라 실제로 필요하지 않을 수도 있지만, 필요할 때를 위해 제공됩니다.
    
    ## `APIRouter`에 다른 `APIRouter` 포함하기 { #include-an-apirouter-in-another }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 21.5K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/sql-databases.md

    這裡我們在應用的啟動事件中建立資料表。
    
    在正式環境中,你大概會在啟動應用前使用遷移腳本來處理。🤓
    
    /// tip | 提示
    
    SQLModel 之後會提供包裝 Alembic 的遷移工具,但目前你可以直接使用 [Alembic](https://alembic.sqlalchemy.org/en/latest/)。
    
    ///
    
    ### 建立 Hero { #create-a-hero }
    
    因為每個 SQLModel 模型同時也是一個 Pydantic 模型,你可以在「型別標註」中像使用 Pydantic 模型一樣使用它。
    
    例如,如果你宣告一個參數型別為 `Hero`,它會從「JSON body」中讀取。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  7. docs/fr/docs/tutorial/bigger-applications.md

    Vous pouvez aussi utiliser `.include_router()` plusieurs fois avec le même routeur en utilisant des préfixes différents.
    
    Cela peut être utile, par exemple, pour exposer la même API sous des préfixes différents, p. ex. `/api/v1` et `/api/latest`.
    
    C'est un usage avancé dont vous n'aurez peut-être pas vraiment besoin, mais il est là au cas où.
    
    ## Inclure un `APIRouter` dans un autre { #include-an-apirouter-in-another }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  8. docs/es/docs/tutorial/bigger-applications.md

    También puedes usar `.include_router()` múltiples veces con el *mismo* router usando diferentes prefijos.
    
    Esto podría ser útil, por ejemplo, para exponer la misma API bajo diferentes prefijos, por ejemplo, `/api/v1` y `/api/latest`.
    
    Este es un uso avanzado que quizás no necesites realmente, pero está allí en caso de que lo necesites.
    
    ## Incluir un `APIRouter` en otro { #include-an-apirouter-in-another }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 20.2K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/bigger-applications.md

    Você também pode usar `.include_router()` várias vezes com o *mesmo* router usando prefixos diferentes.
    
    Isso pode ser útil, por exemplo, para expor a mesma API sob prefixos diferentes, por exemplo, `/api/v1` e `/api/latest`.
    
    Esse é um uso avançado que você pode não precisar, mas está lá caso precise.
    
    ## Inclua um `APIRouter` em outro { #include-an-apirouter-in-another }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  10. doap_Maven.rdf

    ies/apache-maven-4.0.0-alpha-2-bin.tar.gz http://archive.apache.org/dist/maven/maven-4/4.0.0-alpha-2/source/apache-maven-4.0.0-alpha-2-src.zip http://archive.apache.org/dist/maven/maven-4/4.0.0-alpha-2/source/apache-maven-4.0.0-alpha-2-src.tar.gz Latest stable release 2026-03-12 3.9.14 https://archive.apache.org/dist/maven/maven-3/3.9.14/binaries/apache-maven-3.9.14-bin.zip https://archive.apache.org/dist/maven/maven-3/3.9.14/binaries/apache-maven-3.9.14-bin.tar.gz https://archive.apache.org/dis...
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Mar 14 15:05:35 GMT 2026
    - 38K bytes
    - Click Count (0)
Back to Top