- Sort Score
- Num 10 results
- Language All
Results 581 - 590 of 1,221 for Parametre (0.15 seconds)
-
docs/zh-hant/docs/advanced/response-change-status-code.md
例如,假設你預設想回傳 HTTP 狀態碼 "OK" `200`。 但如果資料不存在,你想要建立它,並回傳 HTTP 狀態碼 "CREATED" `201`。 同時你仍希望能用 `response_model` 過濾並轉換所回傳的資料。 在這些情況下,你可以使用 `Response` 參數。 ## 使用 `Response` 參數 { #use-a-response-parameter } 你可以在你的路徑操作函式(path operation function)中宣告一個 `Response` 型別的參數(就像你可以對 Cookies 和標頭那樣)。 接著你可以在那個「*暫時的*」回應物件上設定 `status_code`。 {* ../../docs_src/response_change_status_code/tutorial001_py310.py hl[1,9,12] *}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 1.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
/** OAuth2 state parameter name. */ protected static final String STATE = "state"; /** OAuth2 error parameter name. */ protected static final String ERROR = "error"; /** OAuth2 error description parameter name. */ protected static final String ERROR_DESCRIPTION = "error_description"; /** OAuth2 error URI parameter name. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/MultiEdgesConnecting.java
* {@link EdgesConnecting} for a class that is more efficient but forbids parallel edges. * * @author James Sexton * @param <E> Edge parameter type */ abstract class MultiEdgesConnecting<E> extends AbstractSet<E> { private final Map<E, ?> outEdgeToNode; private final Object targetNode;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 2.2K bytes - Click Count (0) -
docs/ja/docs/advanced/response-change-status-code.md
しかし、データが存在しなければそれを作成し、HTTP ステータスコード "CREATED" `201` を返したい。 それでも、返すデータは `response_model` でフィルタ・変換できるようにしておきたい。 そのような場合は `Response` パラメータを使えます。 ## `Response` パラメータを使う { #use-a-response-parameter } *path operation* 関数で `Response` 型のパラメータを宣言できます(Cookie やヘッダーと同様です)。 そして、その*一時的な*レスポンスオブジェクトに `status_code` を設定できます。 {* ../../docs_src/response_change_status_code/tutorial001_py310.py hl[1,9,12] *}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 2K bytes - Click Count (0) -
docs/pt/docs/how-to/extending-openapi.md
* `routes`: Uma lista de rotas, que são cada uma das *operações de rota* registradas. Elas são obtidas de `app.routes`. /// info | Informação O parâmetro `summary` está disponível no OpenAPI 3.1.0 e superior, suportado pelo FastAPI 0.99.0 e superior. /// ## Sobrescrevendo os padrões { #overriding-the-defaults }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 3.5K bytes - Click Count (0) -
docs/zh/docs/tutorial/body-updates.md
如果要接收部分更新,建议在 Pydantic 模型的 `.model_dump()` 中使用 `exclude_unset` 参数。 比如,`item.model_dump(exclude_unset=True)`。 这会生成一个 `dict`,只包含创建 `item` 模型时显式设置的数据,不包含默认值。 然后再用它生成一个只含已设置(在请求中发送)数据、且省略默认值的 `dict`: {* ../../docs_src/body_updates/tutorial002_py310.py hl[32] *} ### 使用 Pydantic 的 `update` 参数 { #using-pydantics-update-parameter }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java
*/ public static final String ROLE = "admin-accesstoken"; /** * The token parameter. */ public static final String TOKEN = "token"; /** * The expires parameter. */ public static final String EXPIRES = "expires"; /** * The expired time parameter. */ public static final String EXPIRED_TIME = "expiredTime";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 15.9K bytes - Click Count (0) -
ADDING_NEW_LANGUAGE.md
2. **Access the Admin UI:** ``` http://localhost:8080/admin/ ``` 3. **Test language selection:** - Check if your language appears in the language dropdown - Force your language by adding URL parameter: `?browser_lang=[locale]` - Example: `http://localhost:8080/admin/?browser_lang=sv` 4. **Verify translations:** - Navigate through different admin pages - Check that labels and messages appear in your language
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 11:36:30 GMT 2025 - 10.4K bytes - Click Count (1) -
docs/uk/docs/tutorial/schema-extra-example.md
OpenAPI також додала поля `example` і `examples` до інших частин специфікації: * [`Parameter Object` (у специфікації)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-object), який використовувався утилітами FastAPI: * `Path()` * `Query()` * `Header()` * `Cookie()`Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 13.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/PreconditionsTest.java
} } /** * Returns an array containing parameters for invoking a checkArgument, checkNotNull or checkState * method reflectively * * @param firstParam The first parameter * @param sig The method signature */ @GwtIncompatible // ArbitraryInstances @J2ktIncompatible private Object[] getParametersForSignature(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 19.1K bytes - Click Count (0)