- Sort Score
- Num 10 results
- Language All
Results 501 - 510 of 1,080 for fanout (0.3 seconds)
-
android/guava/src/com/google/common/hash/SipHashFunction.java
private final int d; // Four 64-bit words of internal state. // The initial state corresponds to the ASCII string "somepseudorandomlygeneratedbytes", // big-endian encoded. There is nothing special about this value; the only requirement // was some asymmetry so that the initial v0 and v1 differ from v2 and v3. private long v0 = 0x736f6d6570736575L; private long v1 = 0x646f72616e646f6dL;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 5.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/response-status-code.md
<img src="/img/tutorial/response-status-code/image01.png"> /// note | 注意 有些回應碼(見下一節)表示回應不包含本文(body)。 FastAPI 知道這點,並會產生聲明「無回應本文」的 OpenAPI 文件。 /// ## 關於 HTTP 狀態碼 { #about-http-status-codes } /// note | 注意 如果你已經知道什麼是 HTTP 狀態碼,可以直接跳到下一節。 /// 在 HTTP 中,你會在回應的一部分傳回 3 位數的狀態碼。 這些狀態碼有對應的名稱以便辨識,但重點是數字本身。 簡而言之: * `100 - 199` 表示「資訊」。你很少會直接使用它們。這些狀態碼的回應不可包含本文。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 3.7K bytes - Click Count (0) -
docs/zh/docs/help-fastapi.md
* 阅读我在 [**Dev.to**](https://dev.to/tiangolo) 或 [**Medium**](https://medium.com/@tiangolo) 上的文章(或关注我)。 * 阅读我的其他想法、文章,以及我创建的工具。 * 关注我,这样当我发布新文章时你会第一时间看到。 ## 发推谈谈 **FastAPI** { #tweet-about-fastapi } [发推谈谈 **FastAPI**](https://x.com/compose/tweet?text=I'm loving @fastapi because... https://github.com/fastapi/fastapi),告诉我和大家你为什么喜欢它。🎉 我很高兴听到 **FastAPI** 的使用情况、你喜欢它的哪些点、你在哪个项目/公司使用它,等等。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 11.8K bytes - Click Count (0) -
docs/en/docs/contributing.md
/// tip Check the docs about [adding a pull request review](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews) to approve it or request changes. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 13:59:26 GMT 2026 - 10.6K bytes - Click Count (0) -
docs/zh/docs/tutorial/security/simple-oauth2.md
原因很简单,假如数据库被盗,窃贼无法获取用户的明文密码,得到的只是哈希值。 这样一来,窃贼就无法在其它应用中使用窃取的密码,要知道,很多用户在所有系统中都使用相同的密码,风险超大。 {* ../../docs_src/security/tutorial003_an_py310.py hl[82:85] *} #### 关于 `**user_dict` { #about-user-dict } `UserInDB(**user_dict)` 是指: *直接把 `user_dict` 的键与值当作关键字参数传递,等效于:* ```Python UserInDB( username = user_dict["username"], email = user_dict["email"],Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 9K bytes - Click Count (0) -
docs/en/docs/release-notes.md
## 0.5.1 (2019-02-18) * Add section about [helping and getting help with **FastAPI**](https://fastapi.tiangolo.com/help-fastapi/). * Add note about [path operations order in docs](https://fastapi.tiangolo.com/tutorial/path-params/#order-matters).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Apr 03 12:07:04 GMT 2026 - 631K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 18.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing failure URL records in the admin interface. * This form handles the editing of URLs that failed during crawling operations, * providing details about the failure for debugging and troubleshooting purposes. */ public class EditForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.2K bytes - Click Count (0) -
docs/ko/docs/advanced/using-request-directly.md
다음과 같은 곳에서 데이터를 가져왔습니다: * 경로를 매개변수로. * 헤더. * 쿠키. * 기타 등등. 이렇게 함으로써, **FastAPI**는 데이터를 검증하고 변환하며, API에 대한 문서를 자동화로 생성합니다. 하지만 `Request` 객체에 직접 접근해야 하는 상황이 있을 수 있습니다. ## `Request` 객체에 대한 세부 사항 { #details-about-the-request-object } **FastAPI**는 실제로 내부에 **Starlette**을 사용하며, 그 위에 여러 도구를 덧붙인 구조입니다. 따라서 여러분이 필요할 때 Starlette의 [`Request`](https://www.starlette.dev/requests/) 객체를 직접 사용할 수 있습니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 2.8K bytes - Click Count (0) -
docs/pt/docs/tutorial/security/oauth2-jwt.md
Este código é algo que você pode realmente usar na sua aplicação, salvar os hashes das senhas no seu banco de dados, etc. Vamos começar de onde paramos no capítulo anterior e incrementá-lo. ## Sobre o JWT { #about-jwt } JWT significa "JSON Web Tokens". É um padrão para codificar um objeto JSON em uma string longa e densa sem espaços. Ele se parece com isso: ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 11.6K bytes - Click Count (0)