- Sort Score
- Num 10 results
- Language All
Results 241 - 250 of 340 for 23 (0.03 seconds)
-
docs/ru/docs/tutorial/body-multiple-params.md
Но вы можете указать **FastAPI** обрабатывать его, как ещё один ключ тела запроса, используя `Body`: {* ../../docs_src/body_multiple_params/tutorial003_an_py310.py hl[23] *} В этом случае, **FastAPI** будет ожидать тело запроса в формате: ```JSON { "item": { "name": "Foo", "description": "The pretender", "price": 42.0, "tax": 3.2Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 19:57:34 GMT 2026 - 8.2K bytes - Click Count (0) -
docs/ko/docs/tutorial/dependencies/sub-dependencies.md
* 사용자가 쿼리 `q`를 제공하지 않았다면, 이전에 쿠키에 저장해 둔 마지막 쿼리를 사용합니다. ## 의존성 사용하기 { #use-the-dependency } 그다음 다음과 같이 의존성을 사용할 수 있습니다: {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[23] *} /// info | 정보 *경로 처리 함수*에서는 `query_or_cookie_extractor`라는 의존성 하나만 선언하고 있다는 점에 주목하세요. 하지만 **FastAPI**는 `query_or_cookie_extractor`를 호출하는 동안 그 결과를 전달하기 위해, 먼저 `query_extractor`를 해결해야 한다는 것을 알고 있습니다. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 4.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/sub-dependencies.md
- 它還宣告了一個可選的 `last_query` cookie,型別為 `str`。 - 如果使用者沒有提供查詢 `q`,我們就使用先前儲存在 cookie 中的最後一次查詢值。 ## 使用相依項 { #use-the-dependency } 然後我們可以這樣使用這個相依項: {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[23] *} /// info 注意,在路徑操作函式中我們只宣告了一個相依項 `query_or_cookie_extractor`。 但 **FastAPI** 會知道它必須先解析 `query_extractor`,在呼叫 `query_or_cookie_extractor` 時把其結果傳入。 /// ```mermaid graph TBCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 3.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java
} assertThat(CacheTesting.expirationQueueSize(cache)).isEqualTo(10); assertThat(removalListener.getCount()).isEqualTo(0); // wait, so that entries have just 10 ms to live ticker.advance(ttl * 2 / 3, MILLISECONDS); assertThat(CacheTesting.expirationQueueSize(cache)).isEqualTo(10); assertThat(removalListener.getCount()).isEqualTo(0); int shift2 = shift1 + 10; loader.setValuePrefix(shift2);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 19.1K bytes - Click Count (0) -
internal/etag/etag_test.go
{ETag: "3b83ef96387f14655fc854ddc3c6bd57"}, // 1 {ETag: "7b976cc68452e003eec7cb0eb631a19a-1"}, // 2 {ETag: "a7d414b9133d6483d9a1c4e04e856e3b-2"}, // 3 {ETag: "7b976cc68452e003eec7cb0eb631a19a-10000"}, // 4 } func TestIsEncrypted(t *testing.T) { for i, test := range isEncryptedTests { tag, err := Parse(test.ETag) if err != nil {Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Apr 09 14:28:39 GMT 2025 - 12.6K bytes - Click Count (0) -
helm-releases/minio-5.0.3.tgz
IfNotPresent imagePullSecrets: [] # - name: "image-pull-secret" ## Set default image, imageTag, and imagePullPolicy for the `mc` (the minio ## client used to create a default bucket). ## mcImage: repository: quay.io/minio/mc tag: RELEASE.2022-12-13T00-23-28Z pullPolicy: IfNotPresent ## minio mode, i.e. standalone or distributed mode: distributed ## other supported values are "standalone" ## Additional labels to include with deployment or statefulset additionalLabels: {} ## Additional annotations to...
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Dec 19 08:53:02 GMT 2022 - 20.3K bytes - Click Count (0) -
helm-releases/minio-5.0.4.tgz
IfNotPresent imagePullSecrets: [] # - name: "image-pull-secret" ## Set default image, imageTag, and imagePullPolicy for the `mc` (the minio ## client used to create a default bucket). ## mcImage: repository: quay.io/minio/mc tag: RELEASE.2022-12-13T00-23-28Z pullPolicy: IfNotPresent ## minio mode, i.e. standalone or distributed mode: distributed ## other supported values are "standalone" ## Additional labels to include with deployment or statefulset additionalLabels: {} ## Additional annotations to...
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Dec 23 20:29:40 GMT 2022 - 20.3K bytes - Click Count (0) -
docs/ja/docs/tutorial/dependencies/sub-dependencies.md
* また、オプショナルの`last_query`クッキーを`str`として宣言します。 * ユーザーがクエリ`q`を提供しなかった場合、クッキーに保存していた最後に使用したクエリを使用します。 ## 依存関係の使用 { #use-the-dependency } 以下のように依存関係を使用することができます: {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[23] *} /// info | 情報 *path operation 関数*の中で宣言している依存関係は`query_or_cookie_extractor`の1つだけであることに注意してください。 しかし、**FastAPI** は`query_extractor`を最初に解決し、その結果を`query_or_cookie_extractor`を呼び出す時に渡す必要があることを知っています。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 15:24:30 GMT 2026 - 4.8K bytes - Click Count (0) -
src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js
Shinsuke Sugaya <******@****.***> 1729907349 +0900
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 64.8K bytes - Click Count (0) -
README.md
the first security provider: ```java Security.insertProviderAt(Conscrypt.newProvider(), 1); ``` The OkHttp `3.12.x` branch supports Android 2.3+ (API level 9+) and Java 7+. These platforms lack support for TLS 1.2 and should not be used. Releases -------- Our [change log][changelog] has release history.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Oct 30 21:39:59 GMT 2025 - 9.5K bytes - Click Count (0)