- Sort Score
- Num 10 results
- Language All
Results 521 - 530 of 943 for warning1 (0.14 seconds)
-
docs/tr/docs/advanced/additional-responses.md
# OpenAPI'de Ek Response'lar { #additional-responses-in-openapi } /// warning | Uyarı Bu konu oldukça ileri seviye bir konudur. **FastAPI**'ye yeni başlıyorsanız buna ihtiyaç duymayabilirsiniz. /// Ek status code'lar, media type'lar, açıklamalar vb. ile ek response'lar tanımlayabilirsiniz. Bu ek response'lar OpenAPI şemasına dahil edilir; dolayısıyla API dokümanlarında da görünürler.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 9.2K bytes - Click Count (0) -
CODE_OF_CONDUCT.md
Project Stewards, Thea Lamkin (******@****.***) and Joana Carrasqueira (******@****.***). The Project Steward will determine whether the Code of Conduct was violated, and will issue an appropriate sanction, possibly including a written warning or expulsion from the project, project sponsored spaces, or project forums. We ask that you make a good-faith effort to resolve your conflict via the conflict resolution policy before submitting a report. Violations of the Code of Conduct...
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Fri Feb 05 18:43:16 GMT 2021 - 5.2K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
} } } return containingFailures } /** * After archiving the test files, do a cleanup to get rid of TeamCity "XX published a lot of small artifacts" warning. */ private fun cleanUp(filesToCleanUp: Collection<File>) { try { fileSystemOperations.delete { delete(*filesToCleanUp.toTypedArray()) }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 11 11:05:07 GMT 2026 - 14.3K bytes - Click Count (1) -
docs/changelogs/upgrading_to_okhttp_4.md
you must, mock `Call.Factory` which is the interface that `OkHttpClient` implements. #### Internal API changes The `okhttp3.internal` package is not a published API and we change it frequently without warning. Depending on code in this package is bad and will cause you problems with any upgrade! But the 4.x will be particularly painful to naughty developers that import from this package! We changed a lot
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 06 16:58:16 GMT 2022 - 10.9K bytes - Click Count (0) -
docs/en/docs/advanced/events.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 7.8K bytes - Click Count (0) -
docs/pt/docs/advanced/events.md
{* ../../docs_src/events/tutorial003_py310.py hl[22] *} ## Eventos alternativos (descontinuados) { #alternative-events-deprecated } /// warning | AtençãoCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 8.7K bytes - Click Count (0) -
docs/ko/docs/advanced/additional-responses.md
# OpenAPI에서 추가 응답 { #additional-responses-in-openapi } /// warning | 경고 이는 꽤 고급 주제입니다. **FastAPI**를 막 시작했다면, 이 내용이 필요 없을 수도 있습니다. /// 추가 상태 코드, 미디어 타입, 설명 등을 포함한 추가 응답을 선언할 수 있습니다. 이러한 추가 응답은 OpenAPI 스키마에 포함되므로 API 문서에도 표시됩니다. 하지만 이러한 추가 응답의 경우, 상태 코드와 콘텐츠를 포함하여 `JSONResponse` 같은 `Response`를 직접 반환하도록 반드시 처리해야 합니다. ## `model`을 사용한 추가 응답 { #additional-response-with-model } *경로 처리 데코레이터*에 `responses` 파라미터를 전달할 수 있습니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 9.6K bytes - Click Count (0) -
docs/zh/docs/advanced/additional-responses.md
# OpenAPI 中的附加响应 { #additional-responses-in-openapi } /// warning | 警告 这是一个相对高级的话题。 如果你刚开始使用 **FastAPI**,可能暂时用不到。 /// 你可以声明附加响应,包括额外的状态码、媒体类型、描述等。 这些附加响应会被包含在 OpenAPI 模式中,因此它们也会出现在 API 文档中。 但是对于这些附加响应,你必须确保直接返回一个 `Response`(例如 `JSONResponse`),并携带你的状态码和内容。 ## 带有 `model` 的附加响应 { #additional-response-with-model } 你可以向你的*路径操作装饰器*传入参数 `responses`。 它接收一个 `dict`:键是每个响应的状态码(例如 `200`),值是包含该响应信息的另一个 `dict`。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 8.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/request-files.md
若想進一步了解這些編碼與表單欄位,請參考 [<abbr title="Mozilla Developer Network - Mozilla 開發者網路">MDN</abbr> web docs 的 `POST`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST)。 /// /// warning 你可以在一個路徑操作中宣告多個 `File` 與 `Form` 參數,但不能同時宣告預期以 JSON 接收的 `Body` 欄位,因為此請求的本文會使用 `multipart/form-data` 而不是 `application/json`。 這不是 **FastAPI** 的限制,而是 HTTP 協定本身的規範。 /// ## 可選的檔案上傳 { #optional-file-upload }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.6K bytes - Click Count (0) -
callbacks.go
if cs[j].before == "*" && cs[i].before != "*" { return true } if cs[j].after == "*" && cs[i].after != "*" { return true } return false }) for _, c := range cs { // show warning message the callback name already exists if idx := getRIndex(names, c.name); idx > -1 && !c.replace && !c.remove && !cs[idx].remove {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:26:07 GMT 2026 - 8.8K bytes - Click Count (0)