- Sort Score
- Result 10 results
- Languages All
Results 501 - 510 of 557 for tipy (0.05 sec)
-
CONTRIBUTING.md
If you need to check on [CI](http://builds.gradle.org/) status as an external contributor, you can click "Log in as guest". ## Useful tips ### How Gradle Works We have [a series of blog](https://blog.gradle.org/how-gradle-works-1) that explains how Gradle works. This may help you better understand and contribute to Gradle. ### Debugging Gradle
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Nov 05 15:15:33 UTC 2024 - 15.6K bytes - Viewed (0) -
docs/ja/docs/tutorial/response-status-code.md
* 例えば、`404`は「Not Found」レスポンスです。 * クライアントからの一般的なエラーについては、`400`を使用することができます。 * `500`以上はサーバーエラーのためのものです。これらを直接使うことはほとんどありません。アプリケーションコードやサーバーのどこかで何か問題が発生した場合、これらのステータスコードのいずれかが自動的に返されます。 /// tip | "豆知識"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/en/docs/fastapi-people.md
They have proven to be **FastAPI Experts** by helping many others. ✨ /// tip You could become an official FastAPI Expert too! Just [help others with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}. 🤓 ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 9.7K bytes - Viewed (0) -
docs/em/docs/advanced/generate-clients.md
🔜 👆 💪 🗄 & ⚙️ 👩💻 📟, ⚫️ 💪 👀 💖 👉, 👀 👈 👆 🤚 ✍ 👩🔬: <img src="/img/tutorial/generate-clients/image02.png"> 👆 🔜 🤚 ✍ 🚀 📨: <img src="/img/tutorial/generate-clients/image03.png"> /// tip 👀 ✍ `name` & `price`, 👈 🔬 FastAPI 🈸, `Item` 🏷. /// 👆 🔜 ✔️ ⏸ ❌ 📊 👈 👆 📨: <img src="/img/tutorial/generate-clients/image04.png"> 📨 🎚 🔜 ✔️ ✍:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.4K bytes - Viewed (0) -
docs/ja/docs/tutorial/query-params.md
```Python hl_lines="10" {!../../docs_src/query_params/tutorial006.py!} ``` この場合、3つのクエリパラメータがあります。: * `needy`、必須の `str` 。 * `skip`、デフォルト値を `0` とする `int` 。 * `limit`、オプショナルな `int` 。 /// tip | "豆知識" [パスパラメータ](path-params.md#_8){.internal-link target=_blank}と同様に `Enum` を使用できます。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/ru/docs/tutorial/body-nested-models.md
``` //// //// tab | Python 3.8+ ```Python hl_lines="9" {!> ../../docs_src/body_nested_models/tutorial009.py!} ``` //// /// tip | "Совет" Имейте в виду, что JSON поддерживает только ключи типа `str`. Но Pydantic обеспечивает автоматическое преобразование данных.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.8K bytes - Viewed (0) -
docs/tr/docs/tutorial/first-steps.md
* `@app.post()` * `@app.put()` * `@app.delete()` Daha az kullanılanları da kullanabilirsiniz: * `@app.options()` * `@app.head()` * `@app.patch()` * `@app.trace()` /// tip | "İpucu" Her işlemi (HTTP metod) istediğiniz gibi kullanmakta özgürsünüz. **FastAPI** herhangi bir özel amacı veya anlamı olması konusunda ısrarcı olmaz.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0) -
docs/ko/docs/tutorial/body-nested-models.md
다른 유용한 경우는 다른 타입의 키를 가질 때입니다. 예. `int`. 여기서 그 경우를 볼 것입니다. 이 경우, `float` 값을 가진 `int` 키가 있는 모든 `dict`를 받아들입니다: ```Python hl_lines="15" {!../../docs_src/body_nested_models/tutorial009.py!} ``` /// tip | "팁" JSON은 오직 `str`형 키만 지원한다는 것을 염두에 두세요. 하지만 Pydantic은 자동 데이터 변환이 있습니다. 즉, API 클라이언트가 문자열을 키로 보내더라도 해당 문자열이 순수한 정수를 포함하는한 Pydantic은 이를 변환하고 검증합니다.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.6K bytes - Viewed (0) -
docs/en/docs/tutorial/body-nested-models.md
``` //// //// tab | Python 3.8+ ```Python hl_lines="9" {!> ../../docs_src/body_nested_models/tutorial009.py!} ``` //// /// tip Keep in mind that JSON only supports `str` as keys. But Pydantic has automatic data conversion.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.4K bytes - Viewed (0) -
docs/zh/docs/tutorial/request-files.md
```Python hl_lines="7" {!../../docs_src/request_files/tutorial001.py!} ``` /// info | "说明" `File` 是直接继承自 `Form` 的类。 注意,从 `fastapi` 导入的 `Query`、`Path`、`File` 等项,实际上是返回特定类的函数。 /// /// tip | "提示" 声明文件体必须使用 `File`,否则,FastAPI 会把该参数当作查询参数或请求体(JSON)参数。 /// 文件作为「表单数据」上传。 如果把*路径操作函数*参数的类型声明为 `bytes`,**FastAPI** 将以 `bytes` 形式读取和接收文件内容。 这种方式把文件的所有内容都存储在内存里,适用于小型文件。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.9K bytes - Viewed (0)