- Sort Score
- Result 10 results
- Languages All
Results 1101 - 1110 of 1,592 for Response_ (0.08 sec)
-
src/main/java/jcifs/http/NtlmHttpFilter.java
*/ @Override public void doFilter ( ServletRequest request, ServletResponse response, FilterChain chain ) throws IOException, ServletException { HttpServletRequest req = (HttpServletRequest) request; HttpServletResponse resp = (HttpServletResponse) response; NtlmPasswordAuthentication ntlm; if ( ( ntlm = negotiate(req, resp, false) ) == null ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.8K bytes - Viewed (0) -
docs/en/docs/how-to/custom-request-and-route.md
{* ../../docs_src/custom_request_and_route/tutorial003.py hl[26] *} In this example, the *path operations* under the `router` will use the custom `TimedRoute` class, and will have an extra `X-Response-Time` header in the response with the time it took to generate the response:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 22:39:38 UTC 2024 - 4.3K bytes - Viewed (0) -
docs_src/custom_response/tutorial008.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 19 19:14:58 UTC 2021 - 360 bytes - Viewed (0) -
cmd/perf-tests.go
errOnce.Do(func() { retError = err.Error() }) } uploadsCancel() return } response := time.Since(t) atomic.AddUint64(&totalBytesWritten, uint64(info.Size)) objCountPerThread[i]++ mu.Lock() uploadTimes = append(uploadTimes, response) mu.Unlock() } }(i) } wg.Wait() // We already saw write failures, no need to proceed into read's
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 11.8K bytes - Viewed (0) -
cmd/admin-handlers.go
response.DecryptionErr = "The generated and the decrypted data key do not match" resp, err := json.Marshal(response) if err != nil { writeCustomErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInternalError), err.Error(), r.URL) return } writeSuccessResponseJSON(w, resp) return } resp, err := json.Marshal(response) if err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 99.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java
import org.lastaflute.web.api.ApiFailureHook; import org.lastaflute.web.api.ApiFailureResource; import org.lastaflute.web.login.exception.LoginUnauthorizedException; import org.lastaflute.web.response.ApiResponse; import org.lastaflute.web.response.JsonResponse; /** * @author jflute */ public class FessApiFailureHook implements ApiFailureHook { // #change_it for handling API failure
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.8K bytes - Viewed (0) -
docs/em/docs/tutorial/request-files.md
``` //// ๐ ๐ ๐จ, ๐ฃ, `list` `bytes` โ๏ธ `UploadFile`โ. /// note | "๐ก โน" ๐ ๐ช โ๏ธ `from starlette.responses import HTMLResponse`. **FastAPI** ๐ ๐ `starlette.responses` `fastapi.responses` ๐ช ๐, ๐ฉโ๐ป. โ๏ธ ๐ ๐ช ๐จ ๐ ๐ โช๏ธโก๏ธ ๐. /// ### ๐ ๐ ๐ โฎ๏ธ ๐ ๐ & ๐ ๐ โญ, ๐ ๐ช โ๏ธ `File()` โ ๐ ๐ข, `UploadFile`: //// tab | ๐ 3๏ธโฃ.6๏ธโฃ & ๐
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.6K bytes - Viewed (0) -
docs/en/docs/reference/background.md
# Background Tasks - `BackgroundTasks` You can declare a parameter in a *path operation function* or dependency function with the type `BackgroundTasks`, and then you can use it to schedule the execution of background tasks after the response is sent. You can import it directly from `fastapi`: ```python from fastapi import BackgroundTasks ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:53:19 UTC 2024 - 377 bytes - Viewed (0) -
docs/ja/docs/tutorial/handling-errors.md
```JSON {"message": "Oops! yolo did something. There goes a rainbow..."} ``` /// note | "ๆ่ก่ฉณ็ดฐ" ใพใใ`from starlette.requests import Request`ใจ`from starlette.responses import JSONResponse`ใไฝฟ็จใใใใจใใงใใพใใ **FastAPI** ใฏ้็บ่ ใฎๅฉไพฟๆงใ่ๆ ฎใใฆใ`fastapi.responses`ใจๅใ`starlette.responses`ใๆไพใใฆใใพใใใใใใๅฉ็จๅฏ่ฝใชใฌในใใณในใฎใปใจใใฉใฏStarletteใใ็ดๆฅๆไพใใใพใใใใใฏ`Request`ใจๅใใงใใ /// ## ใใใฉใซใใฎไพๅคใใณใใฉใฎใชใผใใผใฉใคใ **FastAPI** ใซใฏใใใคใใฎใใใฉใซใใฎไพๅคใใณใใฉใใใใพใใ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.8K bytes - Viewed (0) -
okhttp-tls/README.md
.build(); // Connect 'em all together. Certificates are exchanged in the handshake. Call call = client.newCall(new Request.Builder() .url(server.url("/")) .build()); Response response = call.execute(); System.out.println(response.handshake().peerPrincipal()); RecordedRequest recordedRequest = server.takeRequest(); System.out.println(recordedRequest.getHandshake().peerPrincipal()); ```
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 17 15:34:10 UTC 2023 - 9.1K bytes - Viewed (0)