- Sort Score
- Num 10 results
- Language All
Results 341 - 350 of 448 for binder (0.05 seconds)
-
docs/en/docs/img/index/index-04-swagger-03.png
index-04-swagger-03.png...
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 26 19:09:53 GMT 2020 - 66K bytes - Click Count (0) -
docs/tr/docs/tutorial/testing.md
Gerçek bir uygulamada testlerinizi büyük ihtimalle farklı bir dosyada tutarsınız. Ayrıca **FastAPI** uygulamanız birden fazla dosya/modül vb. ile de oluşturulmuş olabilir. ### **FastAPI** Uygulama Dosyası { #fastapi-app-file } [Daha Büyük Uygulamalar](bigger-applications.md)'te anlatılan şekilde bir dosya yapınız olduğunu varsayalım: ``` . ├── app │ ├── __init__.py │ └── main.py ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 6.3K bytes - Click Count (0) -
cmd/streaming-signature-v4_test.go
errLineTooLong, nil, nil, }, // Test - 2 - unexpected end of the reader. { bufio.NewReader(readers[1]), io.ErrUnexpectedEOF, nil, nil, }, // Test - 3 - line too long bigger than 4k+1 { bufio.NewReader(readers[2]), errLineTooLong, nil, nil, }, // Test - 4 - parse the chunk reader properly. { bufio.NewReader(readers[3]), nil, []byte("1000"),Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 5.7K bytes - Click Count (0) -
docs/tr/docs/deployment/docker.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 29.6K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/testing.md
/// ## 分離測試 { #separating-tests } 在真實專案中,你大概會把測試放在不同的檔案中。 你的 **FastAPI** 應用也可能由多個檔案/模組組成,等等。 ### **FastAPI** 應用檔案 { #fastapi-app-file } 假設你的檔案結構如[更大型的應用](bigger-applications.md)所述: ``` . ├── app │ ├── __init__.py │ └── main.py ``` 在 `main.py` 檔案中有你的 **FastAPI** 應用: {* ../../docs_src/app_testing/app_a_py310/main.py *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 5.6K bytes - Click Count (0) -
docs/zh/docs/tutorial/testing.md
/// ## 分离测试 { #separating-tests } 在实际应用中,你可能会把你的测试放在另一个文件里。 您的**FastAPI**应用程序也可能由一些文件/模块组成等等。 ### **FastAPI** app 文件 { #fastapi-app-file } 假设你有一个像[更大的应用](bigger-applications.md)中所描述的文件结构: ``` . ├── app │ ├── __init__.py │ └── main.py ``` 在 `main.py` 文件中你有一个 **FastAPI** app: {* ../../docs_src/app_testing/app_a_py310/main.py *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 5.4K bytes - Click Count (0) -
docs/ko/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
{* ../../docs_src/dependencies/tutorial006_an_py310.py hl[11,16] *} ## *경로 처리* 모음에 대한 의존성 { #dependencies-for-a-group-of-path-operations } 나중에 여러 파일을 가지고 있을 수 있는 더 큰 애플리케이션을 구조화하는 법([더 큰 애플리케이션 - 여러 파일들](../../tutorial/bigger-applications.md))을 읽을 때, *경로 처리* 모음에 대한 단일 `dependencies` 매개변수를 선언하는 법에 대해서 배우게 될 것입니다. ## 전역 의존성 { #global-dependencies }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 3.4K bytes - Click Count (0) -
docs/zh/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
因此,可以复用在其他位置使用过的、(能返回值的)普通依赖项,即使没有使用这个值,也会执行该依赖项: {* ../../docs_src/dependencies/tutorial006_an_py310.py hl[11,16] *} ## 为一组路径操作定义依赖项 { #dependencies-for-a-group-of-path-operations } 稍后,[大型应用 - 多文件](../../tutorial/bigger-applications.md)一章中会介绍如何使用多个文件创建大型应用程序,在这一章中,您将了解到如何为一组*路径操作*声明单个 `dependencies` 参数。 ## 全局依赖项 { #global-dependencies }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.8K bytes - Click Count (0) -
docs/pt/docs/advanced/settings.md
## Configurações em outro módulo { #settings-in-another-module } Você pode colocar essas configurações em outro arquivo de módulo como visto em [Aplicações Maiores - Múltiplos Arquivos](../tutorial/bigger-applications.md). Por exemplo, você poderia ter um arquivo `config.py` com: {* ../../docs_src/settings/app01_py310/config.py *} E então usá-lo em um arquivo `main.py`:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 11.5K bytes - Click Count (0) -
docs/zh/docs/advanced/settings.md
你可以把这些设置放在另一个模块文件中,就像你在[更大的应用 - 多个文件](../tutorial/bigger-applications.md)中看到的那样。 例如,可以有一个 `config.py` 文件: {* ../../docs_src/settings/app01_py310/config.py *} 然后在 `main.py` 文件中使用它: {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *} /// tip | 提示 你还需要一个 `__init__.py` 文件,就像你在[更大的应用 - 多个文件](../tutorial/bigger-applications.md)中看到的那样。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 10.4K bytes - Click Count (0)