- Sort Score
- Num 10 results
- Language All
Results 191 - 200 of 242 for iota (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/ko/docs/tutorial/handling-errors.md
# 오류 처리 { #handling-errors } API를 사용하는 클라이언트에 오류를 알려야 하는 상황은 많이 있습니다. 이 클라이언트는 프론트엔드가 있는 브라우저일 수도 있고, 다른 사람이 작성한 코드일 수도 있고, IoT 장치일 수도 있습니다. 클라이언트에 다음과 같은 내용을 알려야 할 수도 있습니다: * 클라이언트가 해당 작업을 수행할 충분한 권한이 없습니다. * 클라이언트가 해당 리소스에 접근할 수 없습니다. * 클라이언트가 접근하려고 한 항목이 존재하지 않습니다. * 등등. 이런 경우 보통 **400**번대(400에서 499) 범위의 **HTTP 상태 코드**를 반환합니다. 이는 200번대 HTTP 상태 코드(200에서 299)와 비슷합니다. "200" 상태 코드는 어떤 형태로든 요청이 "성공"했음을 의미합니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 10.2K bytes - Click Count (0) -
docs/pt/docs/tutorial/sql-databases.md
* `Field(primary_key=True)` informa ao SQLModel que o `id` é a **chave primária** no banco de dados SQL (você pode aprender mais sobre chaves primárias SQL na documentação do SQLModel).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 16.5K bytes - Click Count (0) -
docs/pt/docs/advanced/behind-a-proxy.md
``` </div> ### Redirecionamentos com HTTPS { #redirects-with-https } Por exemplo, suponha que você defina uma *operação de rota* `/items/`: {* ../../docs_src/behind_a_proxy/tutorial001_01_py310.py hl[6] *} Se o cliente tentar ir para `/items`, por padrão, ele seria redirecionado para `/items/`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 16.6K bytes - Click Count (0) -
docs/en/docs/tutorial/handling-errors.md
# Handling Errors { #handling-errors } There are many situations in which you need to notify an error to a client that is using your API. This client could be a browser with a frontend, a code from someone else, an IoT device, etc. You could need to tell the client that: * The client doesn't have enough privileges for that operation. * The client doesn't have access to that resource. * The item the client was trying to access doesn't exist. * etc.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.9K bytes - Click Count (0) -
cmd/batch-rotate.go
return false } } return true } workerSize, err := strconv.Atoi(env.Get("_MINIO_BATCH_KEYROTATION_WORKERS", strconv.Itoa(runtime.GOMAXPROCS(0)/2))) if err != nil { return err } wk, err := workers.New(workerSize) if err != nil { // invalid worker size. return err }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 14.7K bytes - Click Count (0) -
lib/fips140/v1.0.0-c2097c7c.zip
context string) ([]byte, error) { fipsSelfTest() fips140.RecordApproved() if l := len(message); l != sha512Size { return nil, errors.New("ed25519: bad Ed25519ph message hash length: " + strconv.Itoa(l)) } if l := len(context); l > 255 { return nil, errors.New("ed25519: bad Ed25519ph context length: " + strconv.Itoa(l)) } return signWithDom(signature, priv, message, domPrefixPh, context), nil } func SignCtx(priv *PrivateKey, message []byte, context string) ([]byte, error) { // Outline the function body...Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Sep 25 19:53:19 GMT 2025 - 642.7K bytes - Click Count (0) -
docs/es/docs/tutorial/response-model.md
* `@app.get()` * `@app.post()` * `@app.put()` * `@app.delete()` * etc. {* ../../docs_src/response_model/tutorial001_py310.py hl[17,22,24:27] *} /// note | Nota Observa que `response_model` es un parámetro del método "decorador" (`get`, `post`, etc). No de tu *path operation function*, como todos los parámetros y el cuerpo. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 17.1K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/handling-errors.md
# 錯誤處理 { #handling-errors } 在許多情況下,你需要通知使用你 API 的用戶端發生錯誤。 這個用戶端可能是帶有前端的瀏覽器、他人的程式碼、IoT 裝置等。 你可能需要告訴用戶端: * 用戶端沒有足夠權限執行該操作。 * 用戶端沒有權限存取該資源。 * 用戶端嘗試存取的項目不存在。 * 等等。 在這些情況下,通常會回傳範圍為 400(400 到 499)的 HTTP 狀態碼。 這類似於 200 範圍的 HTTP 狀態碼(200 到 299)。那些「200」狀態碼表示請求在某種程度上是「成功」的。 400 範圍的狀態碼表示用戶端錯誤。 還記得那些「404 Not Found」錯誤(和梗)嗎? ## 使用 `HTTPException` { #use-httpexception } 要向用戶端回傳帶有錯誤的 HTTP 回應,使用 `HTTPException`。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/first-steps.md
... ``` #### OpenAPI 的用途 { #what-is-openapi-for } OpenAPI schema 驅動了兩個互動式文件系統。 而且有許多替代方案,所有這些都是基於 OpenAPI。你可以輕鬆地將任何這些替代方案添加到使用 **FastAPI** 建置的應用程式中。 你也可以用它自動生成程式碼,讓用戶端與你的 API 通訊。例如前端、手機或物聯網(IoT)應用程式。 ### 在 `pyproject.toml` 設定應用的 `entrypoint` { #configure-the-app-entrypoint-in-pyproject-toml } 你可以在 `pyproject.toml` 中設定你的應用位置,例如: ```toml [tool.fastapi] entrypoint = "main:app" ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 13.3K bytes - Click Count (0) -
docs/pt/docs/help-fastapi.md
* Fazer uma **pergunta** ou perguntar sobre um **problema**. * Sugerir uma nova **funcionalidade**. **Nota**: se você fizer isso, então vou pedir que você também ajude outras pessoas. 😉 ## Revise Pull Requests { #review-pull-requests } Você pode me ajudar revisando pull requests de outras pessoas.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 13.7K bytes - Click Count (0)