- Sort Score
- Num 10 results
- Language All
Results 1771 - 1780 of 1,943 for Responses (0.05 seconds)
-
docs/ko/docs/tutorial/background-tasks.md
`BackgroundTask`가 아닌 `BackgroundTasks`만 사용하면, 이를 *경로 처리 함수*의 매개변수로 사용할 수 있고 나머지는 **FastAPI**가 `Request` 객체를 직접 사용할 때처럼 대신 처리해 줍니다. FastAPI에서 `BackgroundTask`만 단독으로 사용하는 것도 가능하지만, 코드에서 객체를 생성하고 이를 포함하는 Starlette `Response`를 반환해야 합니다. 더 자세한 내용은 [Starlette의 Background Tasks 공식 문서](https://www.starlette.dev/background/)에서 확인할 수 있습니다. ## 주의사항 { #caveat }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 5.2K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
// Test RequestProcessor getResponse method CurlRequest.RequestProcessor processor = new CurlRequest.RequestProcessor("UTF-8", 2048); CurlResponse response = processor.getResponse(); assertNotNull(response); } @Test public void testMultipleParamsWithSpecialCharacters() { CurlRequest request = new CurlRequest(Method.GET, "https://example.com");Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 24.7K bytes - Click Count (0) -
docs/zh-hant/docs/deployment/https.md
<img src="/img/deployment/https/https05.drawio.svg"> ### HTTP 回應 { #http-response } 應用會處理該請求,並將**純(未加密)的 HTTP 回應**送回 TLS 終止代理。 <img src="/img/deployment/https/https06.drawio.svg"> ### HTTPS 回應 { #https-response } TLS 終止代理接著會依照先前協商(起點是 `someapp.example.com` 的憑證)的方式**加密回應**,並傳回給瀏覽器。 接著,瀏覽器會驗證回應是否合法、是否使用正確的金鑰加密等。然後**解密回應**並處理。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 11.8K bytes - Click Count (0) -
README.md
$ unzip target/releases/fess-*.zip $ ./fess-*/bin/fess & Wait for Fess to be ready (this may take up to 60 seconds): $ curl -s "http://localhost:8080/api/v1/health" You should see a JSON response when Fess is ready. #### 3. Clone Test Data Required for SearchApiTests: $ git clone https://github.com/codelibs/fess-testdata.git /tmp/fess-testdata #### 4. Run Integration TestsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 14 03:19:23 GMT 2026 - 7.8K bytes - Click Count (2) -
guava/src/com/google/common/base/Ascii.java
* a response from a remote station. It may be used as a "Who Are You" (WRU) to obtain * identification, or may be used to obtain station status, or both. * * @since 8.0 */ public static final byte ENQ = 5; /** * Acknowledge: A communication control character transmitted by a receiver as an affirmative * response to a sender. * * @since 8.0 */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 21.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java
/** * Negotiate RDMA parameters * * @param request negotiation request parameters * @return negotiation response * @throws IOException if negotiation fails */ public abstract RdmaNegotiateResponse negotiate(RdmaNegotiateRequest request) throws IOException; /** * Reset connection after recoverable errorCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 8.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
private int capabilities; /** * Constructs a session setup AndX request. * * @param tc the CIFS context containing configuration and credentials * @param negotiated the negotiation response containing server capabilities * @param andx the next command in the AndX chain, or null * @param cred the authentication credentials to use for the session * @throws SmbException if an SMB protocol error occursCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.9K bytes - Click Count (0) -
docs/ko/docs/advanced/async-tests.md
/// 그 다음 앱으로 `AsyncClient`를 만들고, `await`를 사용해 비동기 요청을 보낼 수 있습니다. {* ../../docs_src/async_tests/app_a_py310/test_main.py hl[9:12] *} 이는 다음과 동등합니다: ```Python response = client.get('/') ``` `TestClient`로 요청을 보내기 위해 사용하던 코드입니다. /// tip | 팁 새 `AsyncClient`와 함께 async/await를 사용하고 있다는 점에 주목하세요. 요청은 비동기입니다. /// /// warning | 경고Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 4.5K bytes - Click Count (0) -
docs/ko/docs/advanced/dataclasses.md
그래서 여전히 Pydantic 모델을 사용해야 할 수도 있습니다. 하지만 이미 여러 dataclasses를 가지고 있다면, 이것은 FastAPI로 웹 API를 구동하는 데 그것들을 활용할 수 있는 좋은 방법입니다. 🤓 /// ## `response_model`에서 Dataclasses 사용하기 { #dataclasses-in-response-model } `response_model` 매개변수에서도 `dataclasses`를 사용할 수 있습니다: {* ../../docs_src/dataclasses_/tutorial002_py310.py hl[1,6:12,18] *} dataclass는 자동으로 Pydantic dataclass로 변환됩니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 4.8K bytes - Click Count (0) -
docs/zh-hant/docs/how-to/custom-request-and-route.md
你也可以在 `APIRouter` 上設定 `route_class` 參數: {* ../../docs_src/custom_request_and_route/tutorial003_py310.py hl[26] *} 在此範例中,`router` 底下的路徑操作會使用自訂的 `TimedRoute` 類別,並在回應中多加上一個 `X-Response-Time` 標頭,標示產生該回應所花費的時間:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 4.2K bytes - Click Count (0)