Home
last modified time | relevance | path

Searched refs:requests (Results 1 – 25 of 901) sorted by relevance

12345678910>>...37

/third_party/icu/icu4c/source/data/
DBUILDRULES.py17 requests = []
23 requests += generate_cnvalias(config, io, common_vars)
24 requests += generate_ulayout(config, io, common_vars)
25 requests += generate_uemoji(config, io, common_vars)
26 requests += generate_confusables(config, io, common_vars)
27 requests += generate_conversion_mappings(config, io, common_vars)
28 requests += generate_brkitr_brk(config, io, common_vars)
29 requests += generate_brkitr_lstm(config, io, common_vars)
30 requests += generate_stringprep(config, io, common_vars)
31 requests += generate_brkitr_dictionaries(config, io, common_vars)
[all …]
/third_party/skia/third_party/externals/icu/source/data/
DBUILDRULES.py17 requests = []
23 requests += generate_cnvalias(config, io, common_vars)
24 requests += generate_ulayout(config, io, common_vars)
25 requests += generate_confusables(config, io, common_vars)
26 requests += generate_conversion_mappings(config, io, common_vars)
27 requests += generate_brkitr_brk(config, io, common_vars)
28 requests += generate_stringprep(config, io, common_vars)
29 requests += generate_brkitr_dictionaries(config, io, common_vars)
30 requests += generate_normalization(config, io, common_vars)
31 requests += generate_coll_ucadata(config, io, common_vars)
[all …]
/third_party/node/test/parallel/
Dtest-http-host-header-ipv6-fail.js16 const requests = [ variable
29 this.requests = this.requests || 0;
32 if (++this.requests === requests.length)
34 }, requests.length)).listen(0, function() {
36 for (let i = 0; i < requests.length; ++i) {
37 requests[i].createConnection =
39 http.get(requests[i]);
Dtest-http-max-headers-count.js27 let requests = 0; variable
41 let max = maxAndExpected[requests][0];
42 let expected = maxAndExpected[requests][1];
46 if (++requests < maxAndExpected.length) {
47 max = maxAndExpected[requests][0];
48 expected = maxAndExpected[requests][1];
87 assert.strictEqual(requests, maxAndExpected.length);
Dtest-http-same-map.js13 onrequest.requests.push(req);
16 onrequest.requests = [];
34 onresponse.requests.push(req);
37 onresponse.requests = [];
52 allSame(onrequest.requests.slice(1));
54 allSame(onresponse.requests);
Dtest-https-max-headers-count.js16 let requests = 0; variable
30 let max = maxAndExpected[requests][0];
31 let expected = maxAndExpected[requests][1];
35 if (++requests < maxAndExpected.length) {
36 max = maxAndExpected[requests][0];
37 expected = maxAndExpected[requests][1];
Dtest-http-1.0-keep-alive.js30 requests: [{ property
49 requests: [{ property
68 requests: [{ property
87 requests: [{ property
128 if (current === test.requests.length) return next();
133 const ctx = test.requests[current];
Dtest-http-addrequest-localaddress.js21 assert.strictEqual(Object.keys(agent.requests).length, 1);
23 Object.keys(agent.requests)[0],
34 assert.strictEqual(Object.keys(agent.requests).length, 1);
36 Object.keys(agent.requests)[0],
/third_party/icu/icu4c/source/python/icutools/databuilder/
D__main__.py191 def add_copy_input_requests(requests, config, common_vars): argument
193 for request in requests:
237 result += requests
304 requests = BUILDRULES.generate(config, io, common)
312 requests = add_copy_input_requests(requests, config, common)
314 requests = filtration.apply_filters(requests, config, io)
315 requests = utils.flatten_requests(requests, config, common)
317 build_dirs = utils.compute_directories(requests)
322 requests,
330 requests = requests,
[all …]
Dutils.py109 def flatten_requests(requests, config, common_vars): argument
111 for request in requests:
112 result += request.flatten(config, requests, common_vars)
116 def get_all_output_files(requests, include_tmp=False): argument
118 for request in requests:
132 def compute_directories(requests): argument
134 for file in get_all_output_files(requests, include_tmp=True):
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/
D__main__.py191 def add_copy_input_requests(requests, config, common_vars): argument
193 for request in requests:
237 result += requests
304 requests = BUILDRULES.generate(config, io, common)
312 requests = add_copy_input_requests(requests, config, common)
314 requests = filtration.apply_filters(requests, config, io)
315 requests = utils.flatten_requests(requests, config, common)
317 build_dirs = utils.compute_directories(requests)
322 requests,
330 requests = requests,
[all …]
Dutils.py109 def flatten_requests(requests, config, common_vars): argument
111 for request in requests:
112 result += request.flatten(config, requests, common_vars)
116 def get_all_output_files(requests, include_tmp=False): argument
118 for request in requests:
132 def compute_directories(requests): argument
134 for file in get_all_output_files(requests, include_tmp=True):
/third_party/node/deps/undici/src/docs/api/
Dapi-lifecycle.md9 * A `Client` begins in the **idle** state with no socket connection and no requests in queue.
10 …* The *connect* event transitions the `Client` to the **pending** state where requests can be queu…
11 … transition the `Client` to the **destroyed** state. Since there are no requests in the queue, the…
12 …cates the underlying socket connection has been successfully established and requests are queueing.
13 …* The *process* event transitions the `Client` to the **processing** state where requests are proc…
14 …* If requests are queued, the *close* event transitions to the **processing** state; otherwise, it…
18 … After all queued requests are completed, the *keepalive* event transitions the `Client` back to t…
19 …t` still has queued requests, the `Client` transitions to the **process.closing** state where it w…
21 … `Client` from the **processing** state to the **destroyed** state, destroying any queued requests.
34 …troyed**](#destroyed) state since the `Client` instance will have no queued requests in this state.
[all …]
DPoolStats.md23 Number of pending requests across all clients in this pool.
27 Number of queued requests across all clients in this pool.
31 Number of currently active requests across all clients in this pool.
35 Number of active, pending, or queued requests across all clients in this pool.
/third_party/python/Doc/tutorial/
Dvenv.rst120 (tutorial-env) $ python -m pip install requests==2.6.0
121 Collecting requests==2.6.0
122 Using cached requests-2.6.0-py2.py3-none-any.whl
123 Installing collected packages: requests
124 Successfully installed requests-2.6.0
133 (tutorial-env) $ python -m pip install --upgrade requests
134 Collecting requests
135 Installing collected packages: requests
136 Found existing installation: requests 2.6.0
137 Uninstalling requests-2.6.0:
[all …]
/third_party/skia/tools/skiaserve/tester/
Dtester.py10 import requests
55 return Check(requests.get(self.url + '/info'))
62 return Check(requests.post(self.url + '/new', files=files))
66 return WriteJson(Check(requests.get(self.url + '/cmd')), path)
72 return WritePng(Check(requests.get(url)), path)
75 return Check(requests.post(self.url + '/enableGPU/1'))
78 return Check(requests.post(self.url + '/enableGPU/0'))
86 return WriteJson(Check(requests.get(self.url + '/batches')), path)
/third_party/node/lib/
D_http_agent.js106 this.requests = ObjectCreate(null);
139 const requests = this.requests[name];
140 if (requests && requests.length) {
141 const req = ArrayPrototypeShift(requests);
153 if (requests.length === 0) {
154 delete this.requests[name];
297 if (!this.requests[name]) {
298 this.requests[name] = []; property
306 ArrayPrototypePush(this.requests[name], req);
448 if (this.requests[name] && this.requests[name].length) {
[all …]
/third_party/icu/icu4c/source/test/testdata/
DBUILDRULES.py9 requests = []
10 requests += generate_rb(config, io, common_vars)
11 requests += generate_sprep(config, io, common_vars)
12 requests += generate_conv(config, io, common_vars)
13 requests += generate_other(config, io, common_vars)
14 requests += generate_copy(config, io, common_vars)
16 requests += [
25 return requests
/third_party/node/doc/contributing/
Dfeature-request-management.md3 Feature requests are a valuable source of input to the project.
20 we get through feature requests and the overhead of
21 maintaining open feature requests that will never get
24 ## Creating feature requests
32 The current list of feature requests can be found through the
35 ## Triage of feature requests
37 There is no set process for triaging/handling feature requests.
53 handling of feature requests.
57 Our experience is that most feature requests that are
71 feature requests, please consult the
[all …]
/third_party/nghttp2/doc/
Dh2load.h2r6 requests
8 The number of requests h2load was instructed to make.
10 The number of requests h2load has started.
12 The number of requests completed.
14 The number of requests completed successfully. Only HTTP status
17 The number of requests failed, including HTTP level failures
20 The number of requests failed, except for HTTP level failures.
25 The number of requests whose connection timed out before they were
35 requests were made via TLS, this value is the number of decrypted
58 The fraction of the number of requests within standard deviation
[all …]
/third_party/node/
DCONTRIBUTING.md5 * [Pull Requests](#pull-requests)
23 ## [Pull Requests](./doc/contributing/pull-requests.md)
25 * [Dependencies](./doc/contributing/pull-requests.md#dependencies)
26 * [Setting up your local environment](./doc/contributing/pull-requests.md#setting-up-your-local-env…
27 * [The Process of Making Changes](./doc/contributing/pull-requests.md#the-process-of-making-changes)
28 * [Reviewing Pull Requests](./doc/contributing/pull-requests.md#reviewing-pull-requests)
29 * [Notes](./doc/contributing/pull-requests.md#notes)
/third_party/mbedtls/docs/
Drequirements.txt14 # via requests
16 # via requests
23 # via requests
36 requests==2.28.2
61 # via requests
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/VK_NV_present_barrier/
Dpresent_barrier.adoc9 synchronize corresponding presentation requests across multiple swapchains
18 A set of corresponding presentation requests is defined as exactly one
23 barrier, either to the oldest existing set of corresponding requests for
25 or to a new set of corresponding requests if no such set exists.
27 A set of corresponding requests is said to be _full_ when it contains one
30 is _deferred_ by the implementation until the set of corresponding requests
31 is full, and the visibility operations associated with all requests in that
39 corresponding presentation requests using the _present barrier_ across
/third_party/node/test/sequential/
Dtest-http-max-sockets.js64 agent.requests[addrString] ? agent.requests[addrString].length : 0}`);
66 const agentRequests = agent.requests[addrString] ?
67 agent.requests[addrString].length : 0;
/third_party/node/deps/undici/src/lib/cache/
Dcache.js136 const requests = [request]
139 const responseArrayPromise = this.addAll(requests)
145 async addAll (requests) { argument
149 requests = webidl.converters['sequence<RequestInfo>'](requests)
158 for (const request of requests) {
180 for (const request of requests) {
529 const requests = []
536 requests.push(requestResponse[0])
545 requests.push(requestResponse[0])
555 for (const request of requests) {

12345678910>>...37