Home
last modified time | relevance | path

Searched refs:statusMessage (Results 1 – 25 of 35) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-http-response-status-message.js30 { path: '/200', statusMessage: 'OK', property
32 { path: '/500', statusMessage: 'Internal Server Error', property
34 { path: '/302', statusMessage: 'Moved Temporarily', property
36 { path: '/missing', statusMessage: '', property
38 { path: '/missing-no-space', statusMessage: '', property
70 console.log(`client: expected status message: ${testCase.statusMessage}`);
71 console.log(`client: actual status message: ${response.statusMessage}`);
72 assert.strictEqual(testCase.statusMessage, response.statusMessage);
Dtest-http-status-reason-invalid-chars.js11 }, /Invalid character in statusMessage/);
15 }, /Invalid character in statusMessage/);
17 res.statusMessage = 'OK';
23 res.statusMessage = 'OK\r\nContent-Type: text/html\r\n';
25 }, /Invalid character in statusMessage/);
26 res.statusMessage = 'OK';
Dtest-http2-compat-serverresponse-statusmessage-property-set.js24 response.statusMessage = 'test';
25 response.statusMessage = 'test'; // only warn once
26 assert.strictEqual(response.statusMessage, ''); // no change
Dtest-http2-compat-serverresponse-statusmessage-property.js24 assert.strictEqual(response.statusMessage, '');
25 assert.strictEqual(response.statusMessage, ''); // only warn once
Dtest-http2-compat-serverresponse-statusmessage.js24 const statusMessage = 'OK';
26 response.writeHead(statusCode, statusMessage, headers);
Dtest-http-information-headers.js41 assert.strictEqual(res.statusMessage, 'Processing',
42 `Received ${res.statusMessage}, not "Processing".`);
Dtest-http-parser.js121 method, url, statusCode, statusMessage) => {
126 assert.strictEqual(statusMessage, 'OK');
149 method, url, statusCode, statusMessage) => {
154 assert.strictEqual(statusMessage, 'Connection established');
Dtest-http-status-message.js30 res.statusMessage = 'Custom Message';
Dtest-http-expect-handling.js41 assert.strictEqual(response.statusMessage, 'Expectation Failed');
Dtest-http2-https-fallback-http-server-options.js69 assert.strictEqual(response.statusMessage, 'OK');
Dtest-http2-https-fallback.js92 strictEqual(response.statusMessage, 'OK');
/third_party/node/deps/npm/node_modules/unzip-response/
Dindex.js21 stream.statusMessage = res.statusMessage;
/third_party/node/lib/
D_http_common.js77 url, statusCode, statusMessage, upgrade, argument
124 incoming.statusMessage = statusMessage;
D_http_server.js200 ServerResponse.prototype.statusMessage = undefined; method in ServerResponse
265 this.statusMessage = reason;
268 if (!this.statusMessage)
269 this.statusMessage = STATUS_CODES[statusCode] || 'unknown';
306 if (checkInvalidHeaderChar(this.statusMessage))
309 const statusLine = `HTTP/1.1 ${statusCode} ${this.statusMessage}${CRLF}`;
D_http_incoming.js76 this.statusMessage = null;
D_http_client.js617 statusMessage: res.statusMessage, property
/third_party/node/deps/npm/node_modules/got/
Dindex.js346 this.statusMessage = http.STATUS_CODES[this.statusCode];
353 this.statusMessage = http.STATUS_CODES[this.statusCode];
354 this.message = `Response code ${this.statusCode} (${this.statusMessage})`;
360 this.statusMessage = http.STATUS_CODES[this.statusCode];
Dreadme.md179 Each error contains (if available) `statusCode`, `statusMessage`, `host`, `hostname`, `method` and …
197 When server response code is not 2xx. Contains `statusCode` and `statusMessage`.
/third_party/node/lib/internal/http2/
Dcompat.js621 get statusMessage() { getter in Http2ServerResponse
627 set statusMessage(msg) { setter in Http2ServerResponse
637 writeHead(statusCode, statusMessage, headers) { argument
645 if (typeof statusMessage === 'string')
648 if (headers === undefined && typeof statusMessage === 'object')
649 headers = statusMessage;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/bundle/
DbundleInstaller.js34 statusMessage: "[PC preview] unknown statusMessage", property
/third_party/grpc/src/csharp/Grpc.Microbenchmarks/
DUtf8Encode.cs64 …andle call, BatchContextSafeHandle ctx, StatusCode statusCode, IntPtr statusMessage, UIntPtr statu… in Setup()
/third_party/node/deps/npm/node_modules/node-fetch-npm/src/
Dindex.js138 statusText: res.statusMessage,
/third_party/grpc/templates/src/csharp/Grpc.Core/Internal/
Dnative_methods.include35 …andle call, BatchContextSafeHandle ctx, StatusCode statusCode, IntPtr statusMessage, UIntPtr statu…
/third_party/grpc/src/csharp/Grpc.Core/Internal/
DNativeMethods.Generated.cs937 …andle call, BatchContextSafeHandle ctx, StatusCode statusCode, IntPtr statusMessage, UIntPtr statu… in grpcsharp_call_send_status_from_server_delegate() argument
1115 …andle call, BatchContextSafeHandle ctx, StatusCode statusCode, IntPtr statusMessage, UIntPtr statu… in grpcsharp_call_send_status_from_server() argument
1435 …andle call, BatchContextSafeHandle ctx, StatusCode statusCode, IntPtr statusMessage, UIntPtr statu… in grpcsharp_call_send_status_from_server() argument
1755 …andle call, BatchContextSafeHandle ctx, StatusCode statusCode, IntPtr statusMessage, UIntPtr statu… in grpcsharp_call_send_status_from_server() argument
2075 …andle call, BatchContextSafeHandle ctx, StatusCode statusCode, IntPtr statusMessage, UIntPtr statu… in grpcsharp_call_send_status_from_server() argument
2395 …andle call, BatchContextSafeHandle ctx, StatusCode statusCode, IntPtr statusMessage, UIntPtr statu… in grpcsharp_call_send_status_from_server() argument
2715 …andle call, BatchContextSafeHandle ctx, StatusCode statusCode, IntPtr statusMessage, UIntPtr statu… in grpcsharp_call_send_status_from_server() argument
/third_party/node/doc/api/
Dhttp.md489 * `statusMessage` {string}
1721 ### `response.statusMessage`
1734 response.statusMessage = 'Not found';
1816 ### `response.writeHead(statusCode[, statusMessage][, headers])`
1838 * `statusMessage` {string}
1844 Optionally one can give a human-readable `statusMessage` as the second
2127 ### `message.statusMessage`

12