- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 29 for mix (0.01 seconds)
-
docs/en/docs/tutorial/body-multiple-params.md
# Body - Multiple Parameters { #body-multiple-parameters } Now that we have seen how to use `Path` and `Query`, let's see more advanced uses of request body declarations. ## Mix `Path`, `Query` and body parameters { #mix-path-query-and-body-parameters } First, of course, you can mix `Path`, `Query` and request body parameter declarations freely and **FastAPI** will know what to do.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:32:12 GMT 2026 - 4.8K bytes - Click Count (0) -
docs/zh/llm-prompt.md
- If a heading contains only the name of a FastAPI feature, do not translate it. ### Quotes and punctuation - Keep punctuation style consistent with existing Simplified Chinese docs (they often mix English terms like “FastAPI” with Chinese text). - Never change punctuation inside inline code, code blocks, URLs, or file paths. ### Ellipsis - Keep ellipsis style consistent within each document, prefer `...` over `……`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Dec 29 18:54:20 GMT 2025 - 1.4K bytes - Click Count (0) -
docs/zh-hant/llm-prompt.md
- Do not add trailing punctuation to headings. ### Quotes and punctuation - Keep punctuation style consistent with existing Traditional Chinese docs (they often mix English terms like “FastAPI” with Chinese text). - Never change punctuation inside inline code, code blocks, URLs, or file paths.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Dec 29 18:54:20 GMT 2025 - 2.2K bytes - Click Count (0) -
fastapi/.agents/skills/fastapi/SKILL.md
The same rules apply to dependencies. Make sure blocking code is not run inside of `async` functions. The logic will work, but will damage the performance heavily. When needing to mix blocking and async code, see Asyncer in [the other tools reference](references/other-tools.md). ## Streaming (JSON Lines, SSE, bytes)
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 01 10:05:57 GMT 2026 - 10.1K bytes - Click Count (0) -
docs/ko/docs/tutorial/body-multiple-params.md
# 본문 - 다중 매개변수 { #body-multiple-parameters } 이제 `Path`와 `Query`를 어떻게 사용하는지 확인했으니, 요청 본문 선언에 대한 더 고급 사용법을 살펴보겠습니다. ## `Path`, `Query` 및 본문 매개변수 혼합 { #mix-path-query-and-body-parameters } 먼저, 물론 `Path`, `Query` 및 요청 본문 매개변수 선언을 자유롭게 혼합해서 사용할 수 있고, **FastAPI**는 어떤 동작을 할지 압니다. 또한 기본 값을 `None`으로 설정해 본문 매개변수를 선택사항으로 선언할 수 있습니다: {* ../../docs_src/body_multiple_params/tutorial001_an_py310.py hl[18:20] *} /// note | 참고Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 5.5K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/body-multiple-params.md
# Body - 多個參數 { #body-multiple-parameters } 現在我們已經知道如何使用 `Path` 與 `Query`,接下來看看更進階的請求主體(request body)宣告用法。 ## 混用 `Path`、`Query` 與 Body 參數 { #mix-path-query-and-body-parameters } 首先,當然你可以自由混用 `Path`、`Query` 與請求 Body 參數的宣告,**FastAPI** 會知道該怎麼做。 你也可以將 Body 參數宣告為可選,方法是將預設值設為 `None`: {* ../../docs_src/body_multiple_params/tutorial001_an_py310.py hl[18:20] *} /// note | 注意 請注意,在此情況下,從 body 取得的 `item` 是可選的,因為它的預設值是 `None`。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 4.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
assertEquals(1, param.getValues().length); assertEquals("onlyValue", param.getValues()[0]); } @Test public void test_constructor_withNullAndNonNullValues() { // Test with mix of null and non-null values String name = "mixedParam"; String[] values = { "value1", null, "value3", null }; RequestParameter param = new RequestParameter(name, values);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java
return k1; } private static int mixH1(int h1, int k1) { h1 ^= k1; h1 = Integer.rotateLeft(h1, 13); h1 = h1 * 5 + 0xe6546b64; return h1; } // Finalization mix - force all bits of a hash block to avalanche private static HashCode fmix(int h1, int length) { h1 ^= length; h1 ^= h1 >>> 16; h1 *= 0x85ebca6b; h1 ^= h1 >>> 13; h1 *= 0xc2b2ae35;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 11.8K bytes - Click Count (0) -
docs/zh/docs/tutorial/body-multiple-params.md
# 请求体 - 多个参数 { #body-multiple-parameters } 既然我们已经知道了如何使用 `Path` 和 `Query`,下面让我们来了解一下请求体声明的更高级用法。 ## 混合使用 `Path`、`Query` 和请求体参数 { #mix-path-query-and-body-parameters } 首先,毫无疑问地,你可以随意地混合使用 `Path`、`Query` 和请求体参数声明,**FastAPI** 会知道该如何处理。 你还可以通过将默认值设置为 `None` 来将请求体参数声明为可选参数: {* ../../docs_src/body_multiple_params/tutorial001_an_py310.py hl[18:20] *} /// note | 注意 请注意,在这种情况下,将从请求体获取的 `item` 是可选的。因为它的默认值为 `None`。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 4.9K bytes - Click Count (0) -
docs/ja/docs/tutorial/body-multiple-params.md
# ボディ - 複数のパラメータ { #body-multiple-parameters } これまで`Path`と`Query`をどう使うかを見てきましたが、リクエストボディ宣言のより高度な使い方を見てみましょう。 ## `Path`、`Query`とボディパラメータを混ぜる { #mix-path-query-and-body-parameters } まず、もちろん、`Path`と`Query`とリクエストボディのパラメータ宣言は自由に混ぜることができ、 **FastAPI** は何をするべきかを知っています。 また、デフォルトを`None`に設定することで、ボディパラメータをオプションとして宣言することもできます: {* ../../docs_src/body_multiple_params/tutorial001_an_py310.py hl[18:20] *} /// note | 備考Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 15:24:30 GMT 2026 - 5.9K bytes - Click Count (0)