- Sort Score
- Num 10 results
- Language All
Results 1591 - 1600 of 2,146 for breathe (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/ko/docs/tutorial/first-steps.md
/// ### 2 단계: `FastAPI` "인스턴스" 생성 { #step-2-create-a-fastapi-instance } {* ../../docs_src/first_steps/tutorial001_py310.py hl[3] *} 여기에서 `app` 변수는 `FastAPI` 클래스의 "인스턴스"가 됩니다. 이것은 여러분의 모든 API를 생성하기 위한 상호작용의 주요 지점이 될 것입니다. ### 3 단계: *경로 처리* 생성 { #step-3-create-a-path-operation } #### 경로 { #path } 여기서 "경로"는 첫 번째 `/`부터 시작하는 URL의 뒷부분을 의미합니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 15K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service class for managing duplicate host configuration CRUD operations. * This service provides functionality to create, read, update, and delete * duplicate host configurations used by the Fess crawler system. * * <p>Duplicate host configurations allow administrators to define hostname patterns
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java
direction.directSecurity(createSecurityResourceProvider()); direction.directTime(createTimeResourceProvider()); direction.directMail(createFessMailDeliveryDepartmentCreator().create()); direction.directJson(createJsonResourceProvider()); } protected FessJsonResourceProvider createJsonResourceProvider() { return new FessJsonResourceProvider(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 10.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java
// transition to DONE public void testInterruptThrows() throws Exception { CountDownLatch isInterruptibleRegistered = new CountDownLatch(1); SettableFuture<String> taskResult = SettableFuture.create(); InterruptibleTask<String> task = new InterruptibleTask<String>() { @Override String runInterruptibly() throws Exception { BrokenChannel bc = new BrokenChannel();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 7.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java
// transition to DONE public void testInterruptThrows() throws Exception { CountDownLatch isInterruptibleRegistered = new CountDownLatch(1); SettableFuture<String> taskResult = SettableFuture.create(); InterruptibleTask<String> task = new InterruptibleTask<String>() { @Override String runInterruptibly() throws Exception { BrokenChannel bc = new BrokenChannel();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 7.2K bytes - Click Count (0) -
docs/es/docs/advanced/websockets.md
Pero es la forma más sencilla de enfocarse en el lado del servidor de WebSockets y tener un ejemplo funcional: {* ../../docs_src/websockets_/tutorial001_py310.py hl[2,6:38,41:43] *} ## Crear un `websocket` { #create-a-websocket } En tu aplicación de **FastAPI**, crea un `websocket`: {* ../../docs_src/websockets_/tutorial001_py310.py hl[1,46:47] *} /// note | Detalles TécnicosCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 5.5K bytes - Click Count (0) -
docs/zh/docs/tutorial/middleware.md
* 它可以对该**响应**做一些事情或者执行任何需要的代码。 * 然后它返回这个**响应**。 /// note | 技术细节 如果你有使用 `yield` 的依赖,依赖中的退出代码会在中间件之后运行。 如果有任何后台任务(会在[后台任务](background-tasks.md)一节中介绍,你稍后会看到),它们会在所有中间件之后运行。 /// ## 创建中间件 { #create-a-middleware } 要创建中间件,你可以在函数的顶部使用装饰器 `@app.middleware("http")`。 中间件函数会接收: * `request`。 * 一个函数 `call_next`,它会把 `request` 作为参数接收。 * 这个函数会把 `request` 传递给相应的*路径操作*。 * 然后它返回由相应*路径操作*生成的 `response`。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchJavaBasePlugin.java
* <p> * Determining the transitive deps of a dependency which has been resolved as * non-transitive is difficult because the process of resolving removes the * transitive deps. To sidestep this issue, we create a configuration per * direct dependency version. This specially named and unique configuration * will contain all of the transitive dependencies of this particularCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 27 16:04:42 GMT 2021 - 8K bytes - Click Count (0) -
cmd/testdata/xl-meta-merge.zip
test the deployment using the MinIO Console, an embedded web-based object browser built into MinIO Server. Point a web browser running on the host machine to <http://127.0.0.1:9000> and log in with the root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server. You can also connect using any S3-compatible tool, such as the MinIO Client `mc` commandline tool. See [Test using MinIO Client `mc`](#test-using-minio-client-mc) for more information...
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Mar 08 17:50:48 GMT 2024 - 30.2K bytes - Click Count (0) -
src/test/java/org/codelibs/core/io/SerializeUtilTest.java
* @throws Exception */ public void testFromBinaryToObject_PermissiveFilter() throws Exception { final ObjectInputFilter permissiveFilter = SerializeUtil.createPermissiveFilter(); // Create a custom class instance final TestSerializableClass obj = new TestSerializableClass("test", 123); final byte[] binary = SerializeUtil.fromObjectToBinary(obj); // Should work with permissive filterCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 7.6K bytes - Click Count (0)