- Sort Score
- Num 10 results
- Language All
Results 191 - 200 of 566 for forks (0.02 seconds)
-
.github/ISSUE_TEMPLATE/00-bug.yml
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-forms # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema name: Bugs description: The go command, standard library, or anything else title: "import/path: issue title" body: - type: markdown attributes:
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 04 23:31:17 GMT 2024 - 3.3K bytes - Click Count (0) -
docs/en/docs/advanced/advanced-python-types.md
say_hi() # Oh, no, this throws an error! 😱 ``` The `name` parameter is **still required** (not *optional*) because it doesn't have a default value. Still, `name` accepts `None` as the value: ```Python say_hi(name=None) # This works, None is valid 🎉 ``` The good news is, in most cases, you will be able to simply use `|` to define unions of types: ```python def say_hi(name: str | None): print(f"Hey {name}!") ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:32:12 GMT 2026 - 2K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/request-form-models.md
請先建立[虛擬環境](../virtual-environments.md)、啟用後再安裝,例如: ```console $ pip install python-multipart ``` /// /// note | 注意 此功能自 FastAPI 版本 `0.113.0` 起支援。🤓 /// ## 針對表單的 Pydantic 模型 { #pydantic-models-for-forms } 你只需要宣告一個 **Pydantic 模型**,包含你要接收為 **表單欄位** 的欄位,然後將參數宣告為 `Form`: {* ../../docs_src/request_form_models/tutorial001_an_py310.py hl[9:11,15] *} **FastAPI** 會從請求中的 **表單資料** 擷取 **各欄位** 的資料,並將這些資料組成你定義的 Pydantic 模型實例。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2K bytes - Click Count (0) -
docs/tr/docs/advanced/response-directly.md
XML içeriğinizi bir string içine koyabilir, onu bir `Response` içine yerleştirip döndürebilirsiniz: {* ../../docs_src/response_directly/tutorial002_py310.py hl[1,18] *} ## Bir Response Model Nasıl Çalışır { #how-a-response-model-works } Bir path operation içinde [Response Model - Dönüş Tipi](../tutorial/response-model.md) deklare ettiğinizde, **FastAPI** veriyi Pydantic kullanarak JSON'a serialize etmek için bunu kullanır.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.6K bytes - Click Count (0) -
internal/crypto/doc.go
// The en/decryption slightly depens upon which root-of-trust is used. // // ### SSE-S3 and single master key // // The master key is used to derive unique object- and key-encryption-keys. // SSE-S3 with a single master key works as SSE-C where the master key is // used as the client-provided key. // // 1. Encrypt: // Input: MasterKey, bucket, object, metadata, object_data // - IV := Random({0,1}²⁵⁶)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 26 19:52:29 GMT 2022 - 5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
return entity; }); } /** * Registers available protocol scheme items for web authentication forms. * Includes Basic, Digest, NTLM, and Form authentication schemes. * * @param data the render data to register the protocol scheme items with */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 19.7K bytes - Click Count (0) -
apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt
Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. b) Subject to the terms of this Agreement, each Contributor hereby grants
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Sep 17 05:50:12 GMT 2018 - 11.1K bytes - Click Count (0) -
docs/ru/docs/advanced/response-directly.md
Вы можете поместить ваш XML-контент в строку, поместить её в `Response` и вернуть: {* ../../docs_src/response_directly/tutorial002_py310.py hl[1,18] *} ## Как работает модель ответа { #how-a-response-model-works } Когда вы объявляете [Модель ответа - возвращаемый тип](../tutorial/response-model.md) в операции пути, **FastAPI** будет использовать её для сериализации данных в JSON с помощью Pydantic.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 6.9K bytes - Click Count (0) -
docs/ja/docs/tutorial/request-form-models.md
```console $ pip install python-multipart ``` /// /// note | 備考 これは FastAPI バージョン `0.113.0` 以降でサポートされています。🤓 /// ## フォーム用の Pydantic モデル { #pydantic-models-for-forms } 受け取りたいフィールドを **フォームフィールド** として持つ **Pydantic モデル** を宣言し、パラメータを `Form` として宣言するだけです: {* ../../docs_src/request_form_models/tutorial001_an_py310.py hl[9:11,15] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 2.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMapValues.java
* flavors can read old data or data from the other flavor. However, we strongly discourage * relying on this, as we have made incompatible changes to serialized forms in the past and * expect to do so again, as discussed in https://github.com/google/guava#important-warnings. */ @SuppressWarnings("unused") private static final class SerializedForm<V> implements Serializable {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 4.1K bytes - Click Count (0)