/third_party/icu/icu4c/source/data/ |
D | BUILDRULES.py | 17 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/ |
D | BUILDRULES.py | 17 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/ |
D | test-http-host-header-ipv6-fail.js | 16 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]);
|
D | test-http-max-headers-count.js | 27 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);
|
D | test-http-same-map.js | 13 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);
|
D | test-https-max-headers-count.js | 16 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];
|
D | test-http-1.0-keep-alive.js | 30 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];
|
D | test-http-addrequest-localaddress.js | 21 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__.py | 191 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 …]
|
D | utils.py | 109 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__.py | 191 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 …]
|
D | utils.py | 109 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/ |
D | api-lifecycle.md | 9 * 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 …]
|
D | PoolStats.md | 23 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/ |
D | venv.rst | 120 (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/ |
D | tester.py | 10 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.js | 106 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/ |
D | BUILDRULES.py | 9 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/ |
D | feature-request-management.md | 3 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/ |
D | h2load.h2r | 6 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/ |
D | CONTRIBUTING.md | 5 * [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/ |
D | requirements.txt | 14 # 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/ |
D | present_barrier.adoc | 9 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/ |
D | test-http-max-sockets.js | 64 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/ |
D | cache.js | 136 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) {
|