Home
last modified time | relevance | path

Searched defs:headers (Results 1 – 25 of 459) sorted by relevance

12345678910>>...19

/third_party/typescript/tests/baselines/reference/
DparameterDestructuringObjectLiteral.js4 const fn1 = (options: { headers?: {} }) => { };
5 fn1({ headers: { foo: 1 } }); property
7 const fn2 = ({ headers = {} }) => { }; property
8 fn2({ headers: { foo: 1 } }); property
14 fn1({ headers: { foo: 1 } }); property
18 fn2({ headers: { foo: 1 } }); property
23 headers?: {}; field
25 declare const fn2: ({ headers }: { field
26 headers?: {}; field
/third_party/boost/libs/ptr_container/doc/
Dheaders.rst62 .. _`heap_clone_allocator`: reference.html#the-clone-allocator-concept
63 .. _`view_clone_allocator`: reference.html#the-clone-allocator-concept
64 .. _`bad_ptr_container_operation`: reference.html#exception-classes
65 .. _`bad_index`: reference.html#exception-classes
66 .. _`bad_pointer`: reference.html#exception-classes
67 .. _`nullable`: reference.html#class-nullable
68 .. _`indirect_fun`: indirect_fun.html
/third_party/node/test/parallel/
Dtest-http-client-headers-array.js43 execute({ headers: { 'x-foo': 'boom', 'cookie': 'a=1; b=2; c=3' } }); property
44 execute({ headers: { 'x-foo': 'boom', 'cookie': [ 'a=1', 'b=2', 'c=3' ] } }); property
45 execute({ headers: [[ 'x-foo', 'boom' ], [ 'cookie', 'a=1; b=2; c=3' ]] }); property
46 execute({ headers: [ property
49 execute({ headers: [ property
55 execute({ auth: 'foo:bar', headers: property
57 execute({ auth: 'foo:bar', headers: [ property
Dtest-http-upgrade-advertise.js8 { headers: {}, expected: 'regular' }, property
9 { headers: { upgrade: 'h2c' }, expected: 'regular' }, property
10 { headers: { connection: 'upgrade' }, expected: 'regular' }, property
11 { headers: { connection: 'upgrade', upgrade: 'h2c' }, expected: 'upgrade' }, property
12 { headers: { connection: 'upgrade', upgrade: 'h2c' }, expected: 'destroy' }, property
13 { headers: { connection: 'upgrade', upgrade: 'h2c' }, expected: 'regular' }, property
31 headers: test.headers property
Dtest-http2-compat-serverresponse-end.js44 const headers = { variable
74 const headers = { variable
103 const headers = { variable
133 const headers = { variable
164 const headers = { variable
198 const headers = { variable
229 const headers = { variable
264 const headers = { variable
304 const headers = { variable
337 const headers = { variable
Dtest-http-keep-alive.js36 const headers = { 'connection': 'keep-alive' }; variable
42 path: '/', headers: headers, port: this.address().port, agent: agent property
50 path: '/', headers: headers, port: this.address().port, agent: agent property
58 path: '/', headers: headers, port: this.address().port, agent: agent property
Dtest-http2-util-headers-list.js95 const headers = { variable
113 const headers = { variable
129 const headers = { variable
164 const headers = { variable
175 const headers = { variable
188 const headers = { variable
Dtest-http2-compat-serverresponse-statusmessage.js25 const headers = { 'foo-bar': 'abc123' }; variable
36 const headers = { variable
43 request.on('response', common.mustCall(function(headers) { argument
Dtest-http2-dont-override.js17 const headers = {}; constant
33 const headers = {}; constant
Dtest-http-parser.js47 parser[kOnHeaders] = function(headers, url) { argument
78 const onHeadersComplete = (versionMajor, versionMinor, headers, argument
182 const onHeaders = (headers) => { argument
421 const onHeadersComplete = (versionMajor, versionMinor, headers, argument
531 const onHeadersComplete1 = (versionMajor, versionMinor, headers, argument
542 const onHeadersComplete2 = (versionMajor, versionMinor, headers, argument
Dtest-http-max-http-headers.js32 function fillHeaders(headers, currentSize, valid = false) { argument
45 function writeHeaders(socket, headers) { argument
113 let headers = variable
Dtest-http2-server-set-header.js20 const headers = { ':path': '/' }; variable
23 req.on('response', common.mustCall(function(headers) { argument
Dtest-http-keep-alive-close-on-header.js28 const headers = { 'connection': 'keep-alive' }; variable
45 headers: headers, property
62 headers: headers, property
78 headers: headers, property
Dtest-http2-write-empty-string.js22 const headers = { ':path': '/' }; variable
27 req.on('response', common.mustCall(function(headers) { argument
Dtest-http2-session-stream-state.js13 function onStream(stream, headers, flags) { argument
55 const headers = { ':path': '/' }; variable
Dtest-http2-methods.js17 function onStream(stream, headers, flags) { argument
34 const headers = { ':path': '/' }; variable
/third_party/python/Lib/distutils/command/
Dconfig.py107 def _gen_temp_sourcefile(self, body, headers, lang): argument
119 def _preprocess(self, body, headers, include_dirs, lang): argument
126 def _compile(self, body, headers, include_dirs, lang): argument
135 def _link(self, body, headers, include_dirs, libraries, library_dirs, argument
172 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c"): argument
190 def search_cpp(self, pattern, body=None, headers=None, include_dirs=None, argument
218 def try_compile(self, body, headers=None, include_dirs=None, lang="c"): argument
234 def try_link(self, body, headers=None, include_dirs=None, libraries=None, argument
253 def try_run(self, body, headers=None, include_dirs=None, libraries=None, argument
278 def check_func(self, func, headers=None, include_dirs=None, argument
[all …]
/third_party/node/benchmark/http/
Dincoming_headers.js7 headers: [20], // Number of header lines to append after the common headers property
12 function main({ connections, headers, w, duration }) { property
18 const headers = { variable
36 headers, property
/third_party/node/deps/npm/node_modules/make-fetch-happen/
Dindex.js55 headers: opts.headers property
123 headers: opts.headers property
191 headers: iterableToObject(req.headers) property
195 headers: iterableToObject(res.headers) property
210 headers: iterableToObject(req.headers) property
233 headers: Object.assign({}, opts.headers || {}) property
243 headers: iterableToObject(condRes.headers) property
321 headers: new fetch.Headers(headers), property
467 function isHeaderConditional (headers) { argument
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DTestGrpc.cs275 …Grpc.Testing.Empty EmptyCall(global::Grpc.Testing.Empty request, grpc::Metadata headers = null, gl… in EmptyCall()
297 …esting.Empty> EmptyCallAsync(global::Grpc.Testing.Empty request, grpc::Metadata headers = null, gl… in EmptyCallAsync()
319 …leResponse UnaryCall(global::Grpc.Testing.SimpleRequest request, grpc::Metadata headers = null, gl… in UnaryCall()
341 …onse> UnaryCallAsync(global::Grpc.Testing.SimpleRequest request, grpc::Metadata headers = null, gl… in UnaryCallAsync()
365 …e CacheableUnaryCall(global::Grpc.Testing.SimpleRequest request, grpc::Metadata headers = null, gl… in CacheableUnaryCall()
391 …heableUnaryCallAsync(global::Grpc.Testing.SimpleRequest request, grpc::Metadata headers = null, gl… in CacheableUnaryCallAsync()
416 …putCall(global::Grpc.Testing.StreamingOutputCallRequest request, grpc::Metadata headers = null, gl… in StreamingOutputCall()
439 …bal::Grpc.Testing.StreamingInputCallResponse> StreamingInputCall(grpc::Metadata headers = null, gl… in StreamingInputCall()
462 …global::Grpc.Testing.StreamingOutputCallResponse> FullDuplexCall(grpc::Metadata headers = null, gl… in FullDuplexCall()
487 …global::Grpc.Testing.StreamingOutputCallResponse> HalfDuplexCall(grpc::Metadata headers = null, gl… in HalfDuplexCall()
[all …]
DBenchmarkServiceGrpc.cs208 …leResponse UnaryCall(global::Grpc.Testing.SimpleRequest request, grpc::Metadata headers = null, gl… in UnaryCall()
232 …onse> UnaryCallAsync(global::Grpc.Testing.SimpleRequest request, grpc::Metadata headers = null, gl… in UnaryCallAsync()
256 …impleRequest, global::Grpc.Testing.SimpleResponse> StreamingCall(grpc::Metadata headers = null, gl… in StreamingCall()
279 …equest, global::Grpc.Testing.SimpleResponse> StreamingFromClient(grpc::Metadata headers = null, gl… in StreamingFromClient()
302 … StreamingFromServer(global::Grpc.Testing.SimpleRequest request, grpc::Metadata headers = null, gl… in StreamingFromServer()
325 …eRequest, global::Grpc.Testing.SimpleResponse> StreamingBothWays(grpc::Metadata headers = null, gl… in StreamingBothWays()
DWorkerServiceGrpc.cs201 …Testing.ServerArgs, global::Grpc.Testing.ServerStatus> RunServer(grpc::Metadata headers = null, gl… in RunServer()
231 …Testing.ClientArgs, global::Grpc.Testing.ClientStatus> RunClient(grpc::Metadata headers = null, gl… in RunClient()
257 …CoreResponse CoreCount(global::Grpc.Testing.CoreRequest request, grpc::Metadata headers = null, gl… in CoreCount()
279 …sponse> CoreCountAsync(global::Grpc.Testing.CoreRequest request, grpc::Metadata headers = null, gl… in CoreCountAsync()
301 …:Grpc.Testing.Void QuitWorker(global::Grpc.Testing.Void request, grpc::Metadata headers = null, gl… in QuitWorker()
323 …Testing.Void> QuitWorkerAsync(global::Grpc.Testing.Void request, grpc::Metadata headers = null, gl… in QuitWorkerAsync()
/third_party/node/test/fixtures/wpt/url/
Durlencoded-parser.any.js43 …let init = new Request("about:blank", { body: val.input, method: "LADIDA", headers: {"Content-Type… property
54 …let init = new Response(val.input, { headers: {"Content-Type": "application/x-www-form-urlencoded;… property
/third_party/python/Lib/urllib/
Derror.py65 def headers(self): member in HTTPError
69 def headers(self, headers): member in HTTPError
/third_party/grpc/src/proto/grpc/http_over_grpc/
Dhttp_over_grpc.proto32 repeated Header headers = 3; field
42 repeated Header headers = 2; field

12345678910>>...19