Home
last modified time | relevance | path

Searched refs:response (Results 26 - 50 of 843) sorted by relevance

12345678910>>...34

/third_party/node/deps/v8/src/inspector/
H A Dinjected-script.cc183 Response response = scope.initialize(); in thenCallback() local
184 if (!response.IsSuccess()) return; in thenCallback()
196 callback->sendFailure(response); in thenCallback()
203 callback->sendFailure(response); in thenCallback()
213 response = scope.injectedScript()->wrapObject(result, m_objectGroup, in thenCallback()
215 if (!response.IsSuccess()) { in thenCallback()
216 callback->sendFailure(response); in thenCallback()
228 Response response = scope.initialize(); in catchCallback() local
229 if (!response.IsSuccess()) return; in catchCallback()
234 response in catchCallback()
321 Response response = scope.initialize(); sendPromiseCollected() local
390 Response response = wrapObjectMirror( getProperties() local
398 Response response = getProperties() local
408 Response response = getProperties() local
418 Response response = getProperties() local
428 Response response = getProperties() local
466 Response response = internalProperty.value->buildRemoteObject( getInternalAndPrivateProperties() local
494 Response response = privateProperty.value->buildRemoteObject( getInternalAndPrivateProperties() local
505 Response response = privateProperty.getter->buildRemoteObject( getInternalAndPrivateProperties() local
516 Response response = privateProperty.setter->buildRemoteObject( getInternalAndPrivateProperties() local
533 Response response = RemoteObjectId::parse(objectId, &remoteId); releaseObject() local
564 Response response = mirror.buildRemoteObject(context, wrapMode, result); wrapObjectMirror() local
600 Response response = wrapTable() local
731 Response response = resolveCallArgument() local
780 Response response = addExceptionToDetails() local
834 Response response = createExceptionDetails() local
863 Response response = wrapEvaluateResult() local
993 Response response = RemoteObjectId::parse(m_remoteObjectId, &remoteId); findInjectedScript() local
1014 Response response = RemoteCallFrameId::parse(m_remoteCallFrameId, &remoteId); findInjectedScript() local
[all...]
H A Dv8-webdriver-serializer.cc24 Response response = in _serializeRecursively() local
26 if (!response.IsSuccess()) return response; in _serializeRecursively()
120 Response response = _serializeRecursively(element_value, context, max_depth, in _serializeArrayValue()
122 if (!response.IsSuccess()) return response; in _serializeArrayValue()
140 Response response = in _serializeArray() local
142 if (!response.IsSuccess()) return response; in _serializeArray()
178 Response response in _serializeMap() local
183 Response response = _serializeRecursively( _serializeMap() local
211 Response response = _serializeSet() local
246 Response response = _serializeRecursively(key_value, context, max_depth, _serializeObjectValue() local
255 Response response = _serializeRecursively( _serializeObjectValue() local
281 Response response = _serializeObjectValue(value.As<v8::Object>(), context, _serializeObject() local
293 Response response = serializeV8Value() local
298 Response response = serializeV8Value() local
303 Response response = serializeV8Value() local
308 Response response = serializeV8Value() local
313 Response response = serializeV8Value() local
370 Response response = serializeV8Value() local
[all...]
/third_party/selinux/libselinux/src/
H A Dquery_user_context.c16 char response[10]; /* string to hold the user's response */ in context_menu() local
25 if (fgets(response, sizeof(response), stdin) == NULL) in context_menu()
28 choice = strtol(response, NULL, 10); in context_menu()
40 char response[10]; /* The user's response */ in query_user_context() local
51 if (fgets(response, sizeof(response), stdin) == NULL) in query_user_context()
55 if ((response[ in query_user_context()
108 char response[10]; /* Used to get yes or no answers from user */ manual_user_enter_context() local
[all...]
/third_party/skia/third_party/externals/microhttpd/src/examples/
H A Dpost_example.c125 * URL to serve in response to this POST (if this request
226 * Handler to call to generate response.
238 * Add header to response to set a session cookie.
241 * @param response response to modify
245 struct MHD_Response *response) in add_session_cookie()
254 MHD_add_response_header (response, in add_session_cookie()
281 struct MHD_Response *response; in serve_simple_form() local
284 response = MHD_create_response_from_buffer (strlen (form), in serve_simple_form()
287 if (NULL == response) in serve_simple_form()
244 add_session_cookie(struct Session *session, struct MHD_Response *response) add_session_cookie() argument
317 struct MHD_Response *response; fill_v1_form() local
360 struct MHD_Response *response; fill_v1_v2_form() local
403 struct MHD_Response *response; not_found_page() local
546 struct MHD_Response *response; create_response() local
[all...]
H A Ddigest_auth_example.c43 struct MHD_Response *response; in ahc_echo() local
52 response = MHD_create_response_from_buffer(strlen (DENIED), in ahc_echo()
57 response, in ahc_echo()
59 MHD_destroy_response(response); in ahc_echo()
70 response = MHD_create_response_from_buffer(strlen (DENIED), in ahc_echo()
73 if (NULL == response) in ahc_echo()
77 response, in ahc_echo()
79 MHD_destroy_response(response); in ahc_echo()
82 response = MHD_create_response_from_buffer(strlen(PAGE), PAGE, in ahc_echo()
84 ret = MHD_queue_response(connection, MHD_HTTP_OK, response); in ahc_echo()
[all...]
H A Dfileserver_example_dirs.c88 struct MHD_Response *response; in ahc_echo() local
120 response = MHD_create_response_from_buffer (strlen (emsg), in ahc_echo()
123 if (response == NULL) in ahc_echo()
125 ret = MHD_queue_response (connection, MHD_HTTP_SERVICE_UNAVAILABLE, response); in ahc_echo()
126 MHD_destroy_response (response); in ahc_echo()
130 response = MHD_create_response_from_callback (MHD_SIZE_UNKNOWN, in ahc_echo()
135 if (response == NULL) in ahc_echo()
140 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
141 MHD_destroy_response (response); in ahc_echo()
146 response in ahc_echo()
[all...]
/foundation/ai/ai_engine/services/server/server_executor/source/
H A Dsync_msg_handler.cpp43 IResponse *response = nullptr; in Process() local
44 int processRetCode = pluginAlgorithm_->SyncProcess(request, response); in Process()
46 if (response == nullptr) { in Process()
47 response = IResponse::Create(task.request); in Process()
48 CHK_RET(response == nullptr, RETCODE_OUT_OF_MEMORY); in Process()
52 response->SetRetCode(RETCODE_ALGORITHM_PROCESS_ERROR); in Process()
54 response->SetRetCode(RETCODE_SUCCESS); in Process()
58 (task.notifier)->AddToBack(response); in Process()
60 IResponse::Destroy(response); in Process()
97 IResponse *&response) in ReceiveResponse()
96 ReceiveResponse(int timeOut, SimpleEventNotifier<IResponse> &notifier, IResponse *&response) ReceiveResponse() argument
[all...]
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dconnection.c32 #include "response.h"
247 return ( (NULL == connection->response) && in need_100_continue()
320 * Prepare the response buffer of this connection for
321 * sending. Assumes that the response mutex is
327 * @return #MHD_NO if readying the response failed (the
328 * lock on the response will have been released already
335 struct MHD_Response *response; in try_ready_normal_body() local
337 response = connection->response; in try_ready_normal_body()
338 if (NULL == response in try_ready_normal_body()
403 struct MHD_Response *response; try_ready_chunked_body() local
933 struct MHD_Response *response; global() local
1892 struct MHD_Response *response; global() local
2065 struct MHD_Response *response; global() local
2881 MHD_queue_response(struct MHD_Connection *connection, unsigned int status_code, struct MHD_Response *response) global() argument
[all...]
/third_party/python/Lib/xmlrpc/
H A Dserver.py12 serve pydoc-style documentation in response to HTTP
259 # generate response
261 response = dispatch_method(method, params)
263 response = self._dispatch(method, params)
264 # wrap response in a singleton tuple
265 response = (response,)
266 response = dumps(response, methodresponse=1,
269 response
[all...]
/third_party/skia/third_party/externals/microhttpd/doc/examples/
H A Dresponseheaders.c28 struct MHD_Response *response; in answer_to_connection() local
45 response = in answer_to_connection()
49 if (NULL != response) in answer_to_connection()
53 response); in answer_to_connection()
54 MHD_destroy_response (response); in answer_to_connection()
61 response = in answer_to_connection()
63 MHD_add_response_header (response, "Content-Type", MIMETYPE); in answer_to_connection()
64 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in answer_to_connection()
65 MHD_destroy_response (response); in answer_to_connection()
H A Dsessions.c147 * URL to serve in response to this POST (if this request
248 * Handler to call to generate response.
260 * Add header to response to set a session cookie.
263 * @param response response to modify
267 struct MHD_Response *response) in add_session_cookie()
276 MHD_add_response_header (response, in add_session_cookie()
303 struct MHD_Response *response; in serve_simple_form() local
306 response = MHD_create_response_from_buffer (strlen (form), in serve_simple_form()
309 add_session_cookie (session, response); in serve_simple_form()
266 add_session_cookie(struct Session *session, struct MHD_Response *response) add_session_cookie() argument
338 struct MHD_Response *response; fill_v1_form() local
380 struct MHD_Response *response; fill_v1_v2_form() local
421 struct MHD_Response *response; not_found_page() local
563 struct MHD_Response *response; create_response() local
[all...]
/test/xts/acts/arkui/ace_ets_web_scheme_handler_napis/entry/src/main/cpp/
H A Dtest_request.cpp53 setRspUrl_ = OH_ArkWebResponse_SetUrl(response(), ""); in ReadRawfileDataOnWorkerThread()
56 setRspError_ = OH_ArkWebResponse_SetError(response(), ARKWEB_NET_OK); in ReadRawfileDataOnWorkerThread()
61 setStatus_ = OH_ArkWebResponse_SetStatus(response(), NET_NOT_FOUND); in ReadRawfileDataOnWorkerThread()
62 setStatusText_ = OH_ArkWebResponse_SetStatusText(response(), "not found"); in ReadRawfileDataOnWorkerThread()
66 setStatus_ = OH_ArkWebResponse_SetStatus(response(), SUCCESS); in ReadRawfileDataOnWorkerThread()
67 setStatusText_ = OH_ArkWebResponse_SetStatusText(response(), "ok"); in ReadRawfileDataOnWorkerThread()
69 setMimeType_ = OH_ArkWebResponse_SetMimeType(response(), "text/javascript"); in ReadRawfileDataOnWorkerThread()
70 setCharset_ = OH_ArkWebResponse_SetCharset(response(), "UTF-8"); in ReadRawfileDataOnWorkerThread()
73 setHeaderByName_ = OH_ArkWebResponse_SetHeaderByName(response(), "content-length", std::to_string(len).c_str(), false); in ReadRawfileDataOnWorkerThread()
78 int32_t ret = OH_ArkWebResourceHandler_DidReceiveResponse(resourceHandler(), response()); in ReadRawfileDataOnWorkerThread()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/
H A Drs_animation_timing_curve.cpp61 RSAnimationTimingCurve::RSAnimationTimingCurve(float response, float dampingRatio, float blendDuration) in RSAnimationTimingCurve() argument
62 : type_(CurveType::SPRING), response_(response), dampingRatio_(dampingRatio), blendDuration_(blendDuration), in RSAnimationTimingCurve()
67 float response, float dampingRatio, float initialVelocity, CurveType curveType, float minimumAmplitudeRatio) in RSAnimationTimingCurve()
68 : type_(curveType), response_(response), dampingRatio_(dampingRatio), initialVelocity_(initialVelocity), in RSAnimationTimingCurve()
86 constexpr float response = 0.55f; in CreateSpringCurve() local
89 return RSAnimationTimingCurve(std::make_shared<RSSpringInterpolator>(response, dampingRatio, velocity)); in CreateSpringCurve()
91 float response = 2 * PI * sqrt(mass / stiffness); in CreateSpringCurve() local
93 return RSAnimationTimingCurve(std::make_shared<RSSpringInterpolator>(response, dampingRatio, velocity)); in CreateSpringCurve()
100 constexpr float response = 0.55f; in CreateInterpolatingSpring() local
104 response, dampingRati in CreateInterpolatingSpring()
66 RSAnimationTimingCurve( float response, float dampingRatio, float initialVelocity, CurveType curveType, float minimumAmplitudeRatio) RSAnimationTimingCurve() argument
106 float response = 2 * PI * sqrt(mass / stiffness); CreateInterpolatingSpring() local
117 CreateSpring(float response, float dampingRatio, float blendDuration) CreateSpring() argument
[all...]
/third_party/node/test/parallel/
H A Dtest-http-mutable-headers.js182 }, common.mustCall((response) => {
185 assert.strictEqual(response.statusCode, 201);
186 assert.strictEqual(response.headers['x-test-header'], 'testing');
187 assert.strictEqual(response.headers['x-test-array-header'],
189 assert.deepStrictEqual(cookies, response.headers['set-cookie']);
190 assert.strictEqual(response.headers['x-test-header2'], undefined);
195 assert.strictEqual(+response.headers['content-length'], content.length);
200 assert.strictEqual(response.headers['transfer-encoding'], 'chunked');
205 assert.strictEqual(response.headers['x-foo'], 'bar');
206 assert.strictEqual(response
[all...]
H A Dtest-http2-https-fallback-http-server-options.js20 function onRequest(request, response) {
23 response.status(200);
24 response.end(JSON.stringify({
67 common.mustCall((response) => {
68 assert.strictEqual(response.statusCode, 200);
69 assert.strictEqual(response.statusMessage, 'OK');
71 response.headers['content-type'],
75 response.setEncoding('utf8');
77 response.on('data', (chunk) => { raw += chunk; });
78 response
[all...]
/third_party/node/deps/undici/src/lib/websocket/
H A Dconnection.js37 * @param {(response: any) => void} onEstablish
104 // processResponse given response being these steps:
109 processResponse (response) {
110 // 1. If response is a network error or its status is not 101,
112 if (response.type === 'error' || response.status !== 101) {
118 // list values given `Sec-WebSocket-Protocol` and response’s
121 if (protocols.length !== 0 && !response.headersList.get('Sec-WebSocket-Protocol')) {
128 // Protocol to validate response. This either results in fail
132 // 2. If the response lack
[all...]
/third_party/node/deps/undici/src/lib/cache/
H A Dcache.js8 const { Response, cloneResponse } = require('../fetch/response')
21 * @property {any} response
26 * @see https://w3c.github.io/ServiceWorker/#dfn-request-response-list
32 * @see https://w3c.github.io/ServiceWorker/#dfn-relevant-request-response-list
113 for (const response of responses) {
115 const responseObject = new Response(response.body?.source ?? null)
117 responseObject[kState] = response
119 responseObject[kHeaders][kHeadersList] = response.headersList
206 processResponse (response) {
208 if (response
[all...]
/third_party/node/deps/npm/node_modules/@sigstore/sign/dist/external/
H A Drekor.js47 const response = await this.fetch(url, {
52 await (0, error_1.checkStatus)(response);
53 const data = await response.json();
63 const response = await this.fetch(url);
64 await (0, error_1.checkStatus)(response);
65 const data = await response.json();
75 const response = await this.fetch(url, {
80 await (0, error_1.checkStatus)(response);
81 const data = await response.json();
91 const response
[all...]
/test/xts/acts/arkui/ace_ets_web_scheme_handler_four_napis/entry/src/main/cpp/
H A Dhello.cpp47 ArkWeb_Response *response() { return response_; } in response() function in URLRequest
87 ArkWeb_Response *response; in ReadHTTP302PageOnWorkerThread() local
88 OH_ArkWeb_CreateResponse(&response); in ReadHTTP302PageOnWorkerThread()
89 OH_ArkWebResponse_SetError(response, ARKWEB_NET_OK); in ReadHTTP302PageOnWorkerThread()
90 OH_ArkWebResponse_SetStatus(response, REDIRECT_CODE); in ReadHTTP302PageOnWorkerThread()
91 OH_ArkWebResponse_SetStatusText(response, "page not found"); in ReadHTTP302PageOnWorkerThread()
92 OH_ArkWebResponse_SetMimeType(response, "text/html"); in ReadHTTP302PageOnWorkerThread()
93 OH_ArkWebResponse_SetUrl(response, "https://www.example.com"); in ReadHTTP302PageOnWorkerThread()
94 OH_ArkWebResponse_SetCharset(response, "utf-8"); in ReadHTTP302PageOnWorkerThread()
96 // response in ReadHTTP302PageOnWorkerThread()
106 ArkWeb_Response *response; ReadXHRWithStatusNormalOnWorkerThread() local
306 ArkWeb_Response *response; DestroyResponse() local
[all...]
/third_party/libcoap/examples/
H A Doscore-interop-server.c93 coap_pdu_t *response) { in hnd_get_index()
95 coap_pdu_set_code(response, COAP_RESPONSE_CODE_CONTENT); in hnd_get_index()
96 coap_add_data_large_response(resource, session, request, response, in hnd_get_index()
109 coap_pdu_t *response) { in hnd_get_hello_coap()
110 coap_pdu_set_code(response, COAP_RESPONSE_CODE_CONTENT); in hnd_get_hello_coap()
111 coap_add_data_large_response(resource, session, request, response, in hnd_get_hello_coap()
122 coap_pdu_t *response) { in hnd_get_hello_1()
123 coap_pdu_set_code(response, COAP_RESPONSE_CODE_CONTENT); in hnd_get_hello_1()
124 coap_add_data_large_response(resource, session, request, response, in hnd_get_hello_1()
135 coap_pdu_t *response) { in hnd_get_hello_2()
89 hnd_get_index(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query COAP_UNUSED, coap_pdu_t *response) hnd_get_index() argument
105 hnd_get_hello_coap(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response) hnd_get_hello_coap() argument
118 hnd_get_hello_1(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response) hnd_get_hello_1() argument
131 hnd_get_hello_2(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response) hnd_get_hello_2() argument
144 hnd_get_hello_3(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response) hnd_get_hello_3() argument
157 hnd_post_hello_6(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response) hnd_post_hello_6() argument
174 hnd_put_hello_7(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response) hnd_put_hello_7() argument
205 hnd_get_observe1(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response) hnd_get_observe1() argument
240 hnd_get_observe2(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response) hnd_get_observe2() argument
269 hnd_del_test(coap_resource_t *resource COAP_UNUSED, coap_session_t *session COAP_UNUSED, const coap_pdu_t *request COAP_UNUSED, const coap_string_t *query COAP_UNUSED, coap_pdu_t *response) hnd_del_test() argument
[all...]
H A Detsi_iot_01.c99 coap_pdu_t *response) {
102 coap_pdu_set_code(response, COAP_RESPONSE_CODE_CONTENT);
104 coap_add_option(response, COAP_OPTION_CONTENT_TYPE,
109 coap_add_option(response, COAP_OPTION_MAXAGE,
112 coap_add_data(response, strlen(INDEX), (const uint8_t *)INDEX);
121 coap_pdu_t *response) { in hnd_get_resource()
126 coap_pdu_set_code(response, COAP_RESPONSE_CODE_INTERNAL_ERROR); in hnd_get_resource()
131 coap_pdu_set_code(response, COAP_RESPONSE_CODE_CONTENT); in hnd_get_resource()
133 coap_add_data_blocked_response(request, response, in hnd_get_resource()
146 coap_pdu_t *response) { in hnd_delete_resource()
117 hnd_get_resource(coap_resource_t *resource, coap_session_t *session COAP_UNUSED, const coap_pdu_t *request, const coap_string_t *query COAP_UNUSED, coap_pdu_t *response) hnd_get_resource() argument
142 hnd_delete_resource(coap_resource_t *resource, coap_session_t *session COAP_UNUSED, const coap_pdu_t *request COAP_UNUSED, const coap_string_t *query COAP_UNUSED, coap_pdu_t *response) hnd_delete_resource() argument
160 hnd_post_test(coap_resource_t *resource COAP_UNUSED, coap_session_t *session COAP_UNUSED, const coap_pdu_t *request, const coap_string_t *query COAP_UNUSED, coap_pdu_t *response) hnd_post_test() argument
226 hnd_put_test(coap_resource_t *resource, coap_session_t *session COAP_UNUSED, const coap_pdu_t *request, const coap_string_t *query COAP_UNUSED, coap_pdu_t *response) hnd_put_test() argument
279 hnd_delete_test(coap_resource_t *resource COAP_UNUSED, coap_session_t *session COAP_UNUSED, const coap_pdu_t *request COAP_UNUSED, const coap_string_t *query COAP_UNUSED, coap_pdu_t *response) hnd_delete_test() argument
297 hnd_get_query(coap_resource_t *resource COAP_UNUSED, coap_session_t *session COAP_UNUSED, const coap_pdu_t *request, const coap_string_t *query COAP_UNUSED, coap_pdu_t *response) hnd_get_query() argument
339 hnd_get_separate(coap_resource_t *resource COAP_UNUSED, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query COAP_UNUSED, coap_pdu_t *response) hnd_get_separate() argument
[all...]
/foundation/systemabilitymgr/samgr_lite/samgr/source/
H A Dmessage.c49 int32 SAMGR_SendResponse(const Request *request, const Response *response) in SAMGR_SendResponse() argument
66 exchange->response.data = NULL; in SAMGR_SendResponse()
67 exchange->response.len = 0; in SAMGR_SendResponse()
68 if (response != NULL) { in SAMGR_SendResponse()
69 exchange->response = *response; in SAMGR_SendResponse()
72 // If there is no task queue, we will call the response processor in current task. in SAMGR_SendResponse()
74 exchange->handler(&exchange->request, &exchange->response); in SAMGR_SendResponse()
81 exchange->handler(&exchange->request, &exchange->response); in SAMGR_SendResponse()
111 if (exchange->response in SAMGR_FreeMsg()
164 SAMGR_SendResponseByIdentity(const Identity *id, const Request *request, const Response *response) SAMGR_SendResponseByIdentity() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_httpservers.py388 def check_status_and_reason(self, response, status, data=None):
393 reader = response.fp
394 response.fp = None
396 response._close_conn = close_conn
398 body = response.read()
399 self.assertTrue(response)
400 self.assertEqual(response.status, status)
401 self.assertIsNotNone(response.reason)
406 self.assertEqual(response.version, 10)
407 self.assertEqual(response
[all...]
/foundation/bundlemanager/app_domain_verify/test/unittest/frameworks_common/httpsession_test/
H A Dapp_domain_verify_task_mgr_test.cpp103 HttpClientResponse response; in HWTEST_F() local
104 response.result_ = ""; in HWTEST_F()
107 clientTask->SetResponse(response); in HWTEST_F()
130 HttpClientResponse response; in HWTEST_F() local
131 response.result_ = ""; in HWTEST_F()
134 clientTask->SetResponse(response); in HWTEST_F()
157 HttpClientResponse response; in HWTEST_F() local
158 response.result_ = ""; in HWTEST_F()
161 clientTask->SetResponse(response); in HWTEST_F()
184 HttpClientResponse response; in HWTEST_F() local
232 HttpClientResponse response; HWTEST_F() local
[all...]
/third_party/node/deps/undici/src/lib/fetch/
H A Dresponse.js33 // https://fetch.spec.whatwg.org/#response-class
52 // https://fetch.spec.whatwg.org/#dom-response-json
68 // 3. Let responseObject be the result of creating a Response object, given a new response,
69 // "response", and this’s relevant Realm.
73 responseObject[kHeaders][kGuard] = 'response'
76 // 4. Perform initialize a response given responseObject, init, and (body, "application/json").
111 // given a new response, "immutable", and this’s relevant Realm.
117 // 5. Set responseObject’s response’s status to status.
123 // 7. Append `Location`/value to responseObject’s response’s header list.
130 // https://fetch.spec.whatwg.org/#dom-response
[all...]

Completed in 13 milliseconds

12345678910>>...34