- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 1,367 for respond (0.04 sec)
-
src/main/java/jcifs/util/transport/Response.java
*/ package jcifs.util.transport; /** * Interface for transport response messages. * This interface represents responses received from network transports. */ public interface Response extends Message { /** * Checks if the response has been received. * * @return whether the response is received */ boolean isReceived(); /** * Set received status
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/Response.java
package org.codelibs.fess.suggest.request; /** * The Response interface serves as a marker interface for all response types * in the suggestion system. Implementations of this interface are used to * encapsulate the results of various operations and queries within the system. * * <p>Classes implementing this interface should provide specific details and * data relevant to the type of response they represent.</p> */ public interface Response {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.1K bytes - Viewed (0) -
docs/en/docs/advanced/response-directly.md
But you can return a `JSONResponse` directly from your *path operations*. It might be useful, for example, to return custom headers or cookies. ## Return a `Response` { #return-a-response } In fact, you can return any `Response` or any sub-class of it. /// tip `JSONResponse` itself is a sub-class of `Response`. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3.1K bytes - Viewed (0) -
docs/es/docs/advanced/response-headers.md
Crea un response como se describe en [Retorna un Response Directamente](response-directly.md){.internal-link target=_blank} y pasa los headers como un parรกmetro adicional: {* ../../docs_src/response_headers/tutorial001.py hl[10:12] *} /// note | Detalles Tรฉcnicos Tambiรฉn podrรญas usar `from starlette.responses import Response` o `from starlette.responses import JSONResponse`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 2.4K bytes - Viewed (0) -
docs/em/docs/advanced/custom-response.md
๐ข, **FastAPI** ๐ ๐จ ๐จ โ๏ธ `JSONResponse`. ๐ ๐ช ๐ โซ๏ธ ๐ฌ `Response` ๐ ๐ [๐จ ๐จ ๐](response-directly.md){.internal-link target=_blank}. โ๏ธ ๐ฅ ๐ ๐จ `Response` ๐, ๐ ๐ ๐ซ ๐ ๐, & ๐งพ ๐ ๐ซ ๐ ๐ (๐ผ, ๐ ๐ฏ "๐ป ๐", ๐บ๐ธ๐ ๐ `Content-Type` ๐ ๐ ๐). โ๏ธ ๐ ๐ช ๐ฃ `Response` ๐ ๐ ๐ โ๏ธ, *โก ๐ ๏ธ ๐จโ๐จ*. ๐ ๐ ๐ ๐จ โช๏ธโก๏ธ ๐ *โก ๐ ๏ธ ๐ข* ๐ ๐ฎ ๐ ๐ `Response`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.4K bytes - Viewed (0) -
docs/ko/docs/advanced/response-directly.md
์๋ฅผ ๋ค์ด, ์ฌ์ฉ์ ์ ์ ํค๋๋ ์ฟ ํค๋ฅผ ๋ฐํํด์ผ ํ๋ ๊ฒฝ์ฐ์ ์ ์ฉํ ์ ์์ต๋๋ค. ## `Response` ๋ฐํํ๊ธฐ ์ฌ์ค, `Response` ๋๋ ๊ทธ ํ์ ํด๋์ค๋ฅผ ๋ฐํํ ์ ์์ต๋๋ค. /// tip `JSONResponse` ์์ฒด๋ `Response`์ ํ์ ํด๋์ค์ ๋๋ค. /// ๊ทธ๋ฆฌ๊ณ `Response`๋ฅผ ๋ฐํํ๋ฉด **FastAPI**๊ฐ ์ด๋ฅผ ๊ทธ๋๋ก ์ ๋ฌํฉ๋๋ค. Pydantic ๋ชจ๋ธ๋ก ๋ฐ์ดํฐ ๋ณํ์ ์ํํ์ง ์์ผ๋ฉฐ, ๋ด์ฉ์ ๋ค๋ฅธ ํ์์ผ๋ก ๋ณํํ์ง ์์ต๋๋ค. ์ด๋ก ์ธํด ๋ง์ ์ ์ฐ์ฑ์ ์ป์ ์ ์์ต๋๋ค. ์ด๋ค ๋ฐ์ดํฐ ์ ํ์ด๋ ๋ฐํํ ์ ์๊ณ , ๋ฐ์ดํฐ ์ ์ธ์ด๋ ์ ํจ์ฑ ๊ฒ์ฌ๋ฅผ ์ฌ์ ์ํ ์ ์์ต๋๋ค. ## `Response`์์ `jsonable_encoder` ์ฌ์ฉํ๊ธฐ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.4K bytes - Viewed (0) -
docs/en/docs/reference/response.md
# `Response` class You can declare a parameter in a *path operation function* or dependency to be of type `Response` and then you can set data for the response like headers or cookies. You can also use it directly to create an instance of it and return it from your *path operations*. You can import it directly from `fastapi`: ```python from fastapi import Response ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Apr 18 19:53:19 UTC 2024 - 397 bytes - Viewed (0) -
docs/en/docs/advanced/response-headers.md
# Response Headers { #response-headers } ## Use a `Response` parameter { #use-a-response-parameter } You can declare a parameter of type `Response` in your *path operation function* (as you can do for cookies). And then you can set headers in that *temporal* response object. {* ../../docs_src/response_headers/tutorial002.py hl[1, 7:8] *} And then you can return any object you need, as you normally would (a `dict`, a database model, etc).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.3K bytes - Viewed (0) -
docs/de/docs/advanced/response-headers.md
Erstellen Sie eine Response wie in [Eine Response direkt zurรผckgeben](response-directly.md){.internal-link target=_blank} beschrieben und รผbergeben Sie die Header als zusรคtzlichen Parameter: {* ../../docs_src/response_headers/tutorial001.py hl[10:12] *} /// note | Technische Details Sie kรถnnen auch `from starlette.responses import Response` oder `from starlette.responses import JSONResponse` verwenden.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.6K bytes - Viewed (2) -
docs/em/docs/advanced/response-cookies.md
## ๐จ `Response` ๐ ๐ ๐ช โ ๐ช ๐โ ๐ฌ `Response` ๐ ๐ ๐. ๐, ๐ ๐ช โ ๐จ ๐ฌ [๐จ ๐จ ๐](response-directly.md){.internal-link target=_blank}. โคด๏ธ โ ๐ช โซ๏ธ, & โคด๏ธ ๐จ โซ๏ธ: {* ../../docs_src/response_cookies/tutorial001.py hl[10:12] *} /// tip โ๏ธ ๐คฏ ๐ ๐ฅ ๐ ๐จ ๐จ ๐ โฉ๏ธ โ๏ธ `Response` ๐ข, FastAPI ๐ ๐จ โซ๏ธ ๐. , ๐ ๐ โ๏ธ โ ๐ญ ๐ ๐ฝ โ ๐. ๐คถ โ. โซ๏ธ ๐ โฎ๏ธ ๐ป, ๐ฅ ๐ ๐ฌ `JSONResponse`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.8K bytes - Viewed (0)