- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for 2153 (0.04 sec)
-
docs/en/docs/release-notes.md
* โ Fix typos and add rewording in docs. PR [#2159](https://github.com/tiangolo/fastapi/pull/2159) by [@nukopy](https://github.com/nukopy). * ๐ Fix code consistency in examples for Tutorial - User Guide - Path Parameters. PR [#2158](https://github.com/tiangolo/fastapi/pull/2158) by [@nukopy](https://github.com/nukopy). * ๐ Fix renamed parameter `content_type` typo. PR [#2135](https://github.com/tiangolo/fastapi/pull/2135) by [@TeoZosa](https://github.com/TeoZosa).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Nov 01 11:25:57 UTC 2024 - 460.3K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
api("org.eclipse.jgit:org.eclipse.jgit:5.13.3.202401111512-r") api("org.javassist:javassist:3.27.0-GA") api("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.9.0") api("org.jsoup:jsoup:1.15.3") api("org.junit.jupiter:junit-jupiter:5.8.2") api("org.junit.vintage:junit-vintage-engine:5.8.2") api("org.openmbee.junit:junit-xml-parser:1.0.0") api("org.ow2.asm:asm:$asmVersion")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0) -
docs/em/docs/how-to/extending-openapi.md
```Python hl_lines="2 15-20" {!../../docs_src/extending_openapi/tutorial001.py!} ``` ### ๐ ๐ ๐ ๐ ๐ ๐ช ๐ฎ ๐ โ, โ ๐ `x-logo` `info` "๐" ๐ ๐: ```Python hl_lines="21-23" {!../../docs_src/extending_openapi/tutorial001.py!} ``` ### ๐พ ๐ ๐ ๐ ๐ช โ๏ธ ๐ `.openapi_schema` "๐พ", ๐ช ๐ ๐ ๐. ๐ ๐, ๐ ๐ธ ๐ ๐ซ โ๏ธ ๐ ๐ ๐ ๐ฐ ๐ฉโ๐ป ๐ ๐ ๐ ๏ธ ๐ฉบ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java
if (artifact.getVersion() == null) { // set the recommended version ArtifactVersion selected = artifact.getSelectedVersion(); // MNG-2123: null is a valid response to getSelectedVersion, don't // assume it won't ever be. if (selected != null) { artifact.selectVersion(selected.toString());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
gradle/libs.versions.toml
robolectric-android = "org.robolectric:android-all:14-robolectric-10818077" robolectric = "org.robolectric:robolectric:4.12.2" signature-android-apilevel21 = "net.sf.androidscents.signature:android-api-level-21:5.0.1_r2" signature-android-apilevel24 = "net.sf.androidscents.signature:android-api-level-24:7.0_r2" squareup-moshi = { module = "com.squareup.moshi:moshi", version.ref = "com-squareup-moshi" }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Oct 28 11:53:44 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/em/docs/tutorial/bigger-applications.md
, ๐ผ, ๐ ๐ ๐ช โ๏ธ ๐ `APIRouter` โฎ๏ธ ๐ ๐ค ๐ฉโ๐ฌ. ### ๐ *โก ๐ ๏ธ* ๐ฅ ๐ช ๐ฎ *โก ๐ ๏ธ* ๐ `FastAPI` ๐ฑ. ๐ฅ ๐ฅ โซ๏ธ... ๐ฆ ๐ ๐ฅ ๐ช ๐คท: ```Python hl_lines="21-23" title="app/main.py" {!../../docs_src/bigger_applications/app/main.py!} ``` & โซ๏ธ ๐ ๐ท โ, ๐ฏโโ๏ธ โฎ๏ธ ๐ ๐ *โก ๐ ๏ธ* ๐ฎ โฎ๏ธ `app.include_router()`. /// info | "๐ถ ๐ก โน"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.5K bytes - Viewed (0) -
cmd/bucket-metadata-sys.go
} } func (sys *BucketMetadataSys) refreshBucketsMetadataLoop(ctx context.Context) { const bucketMetadataRefresh = 15 * time.Minute sleeper := newDynamicSleeper(2, 150*time.Millisecond, false) t := time.NewTimer(bucketMetadataRefresh) defer t.Stop() for { select { case <-ctx.Done(): return case <-t.C:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 28 15:32:18 UTC 2024 - 20.4K bytes - Viewed (0) -
docs/en/docs/tutorial/bigger-applications.md
### Include a *path operation* We can also add *path operations* directly to the `FastAPI` app. Here we do it... just to show that we can ๐คท: ```Python hl_lines="21-23" title="app/main.py" {!../../docs_src/bigger_applications/app/main.py!} ``` and it will work correctly, together with all the other *path operations* added with `app.include_router()`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.4K bytes - Viewed (0) -
docs/zh/docs/advanced/security/oauth2-scopes.md
่ฟๆ ท๏ผ่ฟๅ็ JWT ไปค็ไธญๅฐฑๅ ๅซไบไฝ็จๅใ /// danger | "ๅฑ้ฉ" ไธบไบ็ฎๆ่ตท่ง๏ผๆฌไพๆๆฅๆถ็ไฝ็จๅ็ดๆฅๆทปๅ ๅฐไบไปค็้ใ ไฝๅจๆจ็ๅบ็จไธญ๏ผไธบไบๅฎๅ จ๏ผๅบ่ฏฅๅชๆไฝ็จๅๆทปๅ ๅฐ็กฎๅฎ้่ฆไฝ็จๅ็็จๆท๏ผๆ้ขๅฎไน็็จๆทใ /// ```Python hl_lines="153" {!../../docs_src/security/tutorial005.py!} ``` ## ๅจ*่ทฏๅพๆไฝ*ไธไพ่ต้กนไธญๅฃฐๆไฝ็จๅ ๆฅไธๆฅ๏ผไธบ*่ทฏๅพๆไฝ* `/users/me/items/` ๅฃฐๆไฝ็จๅ `items`ใ ไธบๆญค๏ผ่ฆไป `fastapi` ไธญๅฏผๅ ฅๅนถไฝฟ็จ `Security` ใ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.8K bytes - Viewed (0) -
CONTRIBUTING.md
test or more in general your filtered/selected tests have a very low execution time and the sharding [could create an overhead on the test execution](https://github.com/bazelbuild/bazel/issues/2113#issuecomment-264054799). 2. Using [Docker](https://www.docker.com) and TensorFlow's CI scripts. ```bash # Install Docker first, then this will build and run cpu tests
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 06:20:12 UTC 2024 - 15.9K bytes - Viewed (0)