- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 293 for 31 (0.74 sec)
-
docs/ja/docs/tutorial/security/get-current-user.md
{* ../../docs_src/security/tutorial002.py hl[19:22,26:27] *} ## 現在のユーザーの注入 ですので、 `get_current_user` に対して同様に *path operation* の中で `Depends` を利用できます。 {* ../../docs_src/security/tutorial002.py hl[31] *} Pydanticモデルの `User` として、 `current_user` の型を宣言することに注意してください。 その関数の中ですべての入力補完や型チェックを行う際に役に立ちます。 /// tip | 豆知識 リクエストボディはPydanticモデルでも宣言できることを覚えているかもしれません。Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.4K bytes - Viewed (0) -
docs/ru/docs/advanced/generate-clients.md
Больше генераторов SDK можно найти на <a href="https://openapi.tools/#sdk" class="external-link" target="_blank">OpenAPI.Tools</a>. /// tip | Совет FastAPI автоматически генерирует спецификации **OpenAPI 3.1**, поэтому любой используемый инструмент должен поддерживать эту версию. /// ## Генераторы SDK от спонсоров FastAPI { #sdk-generators-from-fastapi-sponsors }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 15.9K bytes - Viewed (0) -
api/go1.1.txt
pkg syscall (linux-386), const SIGSTKFLT = 16 pkg syscall (linux-386), const SIGSTOP = 19 pkg syscall (linux-386), const SIGSYS = 31 pkg syscall (linux-386), const SIGTSTP = 20 pkg syscall (linux-386), const SIGTTIN = 21 pkg syscall (linux-386), const SIGTTOU = 22 pkg syscall (linux-386), const SIGUNUSED = 31 pkg syscall (linux-386), const SIGURG = 23 pkg syscall (linux-386), const SIGUSR1 = 10
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
@Deprecated public List<MavenProject> getSortedProjects() { return getProjects(); } @Deprecated // // Used by Tycho and will break users and force them to upgrade to Maven 3.1 so we should really leave // this here, possibly indefinitely. // public RepositoryCache getRepositoryCache() { return null; } @DeprecatedRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 16.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64.s
VSRI $2, V1.B8, V2.B8 // 22440e2f VSRI $2, V1.B16, V2.B16 // 22440e6f VSLI $7, V2.B16, V3.B16 // 43540f6f VSLI $15, V3.H4, V4.H4 // 64541f2f VSLI $31, V5.S4, V6.S4 // a6543f6f VSLI $63, V7.D2, V8.D2 // e8547f6f VUSRA $8, V2.B16, V3.B16 // 4314086f VUSRA $16, V3.H4, V4.H4 // 6414102f
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Mon Nov 10 17:34:13 UTC 2025 - 96.1K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
* Fix: Revert builder-style return types from OkHttpClient's timeout methods for binary compatibility with OkHttp 1.x. * Fix: Don't skip client stream 1 on SPDY/3.1. This fixes SPDY connectivity to `https://google.com`, which doesn't follow the SPDY/3.1 spec! * Fix: Always configure NPN headers. This fixes connectivity to `https://facebook.com` when SPDY and HTTP/2 are both disabled. Otherwise an
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
request.writeBytesWireFormat(buffer, 0); // Read file attributes from buffer (offset 28-31) int readAttributes = (buffer[28] & 0xFF) | ((buffer[29] & 0xFF) << 8) | ((buffer[30] & 0xFF) << 16) | ((buffer[31] & 0xFF) << 24); assertEquals(attributes, readAttributes); } @Test @DisplayName("Test share access setter") void testSetShareAccess() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
docs/de/docs/advanced/generate-clients.md
Weitere SDK-Generatoren finden Sie auf <a href="https://openapi.tools/#sdk" class="external-link" target="_blank">OpenAPI.Tools</a>. /// tip | Tipp FastAPI generiert automatisch **OpenAPI 3.1**-Spezifikationen, daher muss jedes von Ihnen verwendete Tool diese Version unterstützen. /// ## SDK-Generatoren von FastAPI-Sponsoren { #sdk-generators-from-fastapi-sponsors }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 11.7K bytes - Viewed (0) -
docs/pt/docs/advanced/generate-clients.md
Você pode descobrir mais geradores de SDK em <a href="https://openapi.tools/#sdk" class="external-link" target="_blank">OpenAPI.Tools</a>. /// tip | Dica O FastAPI gera automaticamente especificações **OpenAPI 3.1**, então qualquer ferramenta que você usar deve suportar essa versão. /// ## Geradores de SDK dos patrocinadores do FastAPI { #sdk-generators-from-fastapi-sponsors }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 10.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java
map(1, 1, 2, 2, 3, 4)) .addEqualityGroup( ImmutableMap.of(1, 2, 2, 3, 3, 1), ImmutableMap.builder().put(1, 2).put(2, 3).put(3, 1).buildOrThrow(), ImmutableMap.ofEntries(entry(1, 2), entry(2, 3), entry(3, 1)), map(1, 2, 2, 3, 3, 1)) .addEqualityGroup( ImmutableMap.of(1, 1, 2, 2, 3, 3, 4, 4),
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 36.7K bytes - Viewed (0)