- Sort Score
- Num 10 results
- Language All
Results 581 - 590 of 850 for tutoriel (0.06 seconds)
-
docs/ko/docs/advanced/advanced-dependencies.md
`Depends(scope="function")`를 사용하면, `yield` 이후의 종료 코드는 *경로 처리 함수*가 끝난 직후(클라이언트에 응답이 반환되기 전)에 실행됩니다. 그리고 `Depends(scope="request")`(기본값)를 사용하면, `yield` 이후의 종료 코드는 응답이 전송된 후에 실행됩니다. 자세한 내용은 [`yield`가 있는 의존성 - 조기 종료와 `scope`](../tutorial/dependencies/dependencies-with-yield.md#early-exit-and-scope) 문서를 참고하세요. ### `yield`가 있는 의존성과 `StreamingResponse`, 기술 세부사항 { #dependencies-with-yield-and-streamingresponse-technical-details }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 10.7K bytes - Click Count (0) -
docs/ko/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 | 팁 [더 큰 애플리케이션 - 여러 파일](../tutorial/bigger-applications.md)에서 본 것처럼 `__init__.py` 파일도 필요합니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 11.9K bytes - Click Count (0) -
docs/zh-hant/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:05:38 GMT 2026 - 10.3K bytes - Click Count (0) -
docs/es/docs/index.md
 Para un ejemplo más completo incluyendo más funcionalidades, ve al <a href="https://fastapi.tiangolo.com/es/tutorial/">Tutorial - Guía del Usuario</a>. **Alerta de spoilers**: el tutorial - guía del usuario incluye: * Declaración de **parámetros** desde otros lugares diferentes como: **headers**, **cookies**, **campos de formulario** y **archivos**.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 22.6K bytes - Click Count (0) -
docs/pt/docs/index.md
 Para um exemplo mais completo incluindo mais recursos, veja o <a href="https://fastapi.tiangolo.com/pt/tutorial/">Tutorial - Guia do Usuário</a>. **Alerta de Spoiler**: o tutorial - guia do usuário inclui: * Declaração de **parâmetros** de diferentes lugares como: **cabeçalhos**, **cookies**, **campos de formulários** e **arquivos**.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 22.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java
assertEquals("singleKeyword", result.getQuery()); } @Test public void test_search_withFessQuery() { final String query = "+Fess +Docker (tutorial OR guide)"; final IntentDetectionResult result = IntentDetectionResult.search(query, "Fess query"); assertEquals(ChatIntent.SEARCH, result.getIntent()); assertEquals(query, result.getQuery()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 8.2K bytes - Click Count (0) -
docs/fr/docs/how-to/custom-request-and-route.md
/// tip | Astuce Pour résoudre ce même problème, il est probablement beaucoup plus simple d'utiliser `body` dans un gestionnaire personnalisé pour `RequestValidationError` ([Gérer les erreurs](../tutorial/handling-errors.md#use-the-requestvalidationerror-body)). Mais cet exemple reste valable et montre comment interagir avec les composants internes. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 5.1K bytes - Click Count (0) -
docs/es/docs/how-to/custom-request-and-route.md
/// tip | Consejo Para resolver este mismo problema, probablemente sea mucho más fácil usar el `body` en un manejador personalizado para `RequestValidationError` ([Manejo de Errores](../tutorial/handling-errors.md#use-the-requestvalidationerror-body)). Pero este ejemplo sigue siendo válido y muestra cómo interactuar con los componentes internos. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 4.8K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/dataclasses.md
你也可以在 `response_model` 參數中使用 `dataclasses`: {* ../../docs_src/dataclasses_/tutorial002_py310.py hl[1,6:12,18] *} 該 dataclass 會自動轉換為 Pydantic 的 dataclass。 如此一來,其結構描述(schema)會顯示在 API 文件介面中: <img src="/img/tutorial/dataclasses/image01.png"> ## 巢狀資料結構中的 Dataclasses { #dataclasses-in-nested-data-structures } 你也可以將 `dataclasses` 與其他型別註記結合,建立巢狀的資料結構。 在某些情況下,你可能仍需要使用 Pydantic 版本的 `dataclasses`。例如,當自動產生的 API 文件出現錯誤時。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 3.8K bytes - Click Count (0) -
docs/en/docs/how-to/custom-request-and-route.md
/// tip To solve this same problem, it's probably a lot easier to use the `body` in a custom handler for `RequestValidationError` ([Handling Errors](../tutorial/handling-errors.md#use-the-requestvalidationerror-body)). But this example is still valid and it shows how to interact with the internal components. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.4K bytes - Click Count (0)