/third_party/node/test/sequential/ |
D | test-perf-hooks.js | 90 function checkNodeTiming(timing) { argument 93 const delta = Math.abs(now - timing.duration); 95 log(JSON.stringify(timing, null, 2)); 97 assert.strictEqual(timing.name, 'node'); 98 assert.strictEqual(timing.entryType, 'node'); 102 assert.strictEqual(typeof timing.duration, 'number'); 103 assert(timing.duration > 0, `timing.duration ${timing.duration} <= 0`); 105 `now (${now}) - timing.duration (${timing.duration}) = ${delta} >= 10`); 108 assert.strictEqual(timing.startTime, initialTiming.startTime); 109 assert.strictEqual(timing.nodeStart, initialTiming.nodeStart); [all …]
|
/third_party/node/deps/npm/tap-snapshots/test/lib/utils/ |
D | exit-handler.js.test.cjs | 9 XX timing npm:load:whichnode Completed in {TIME}ms 10 XX timing config:load Completed in {TIME}ms 11 XX timing npm:load:configload Completed in {TIME}ms 12 XX timing npm:load:mkdirpcache Completed in {TIME}ms 13 XX timing npm:load:mkdirplogs Completed in {TIME}ms 16 XX timing npm:load:setTitle Completed in {TIME}ms 17 XX timing npm:load:display Completed in {TIME}ms 20 XX timing npm:load:logFile Completed in {TIME}ms 21 XX timing npm:load:timers Completed in {TIME}ms 22 XX timing npm:load:configScope Completed in {TIME}ms [all …]
|
/third_party/mbedtls/ |
D | SECURITY.md | 29 over the network. This includes observing the content and timing of individual 41 who can measure the timing of packets with sufficient precision. For details 52 The attacker is able to observe the timing of instructions executed by Mbed TLS 57 Mbed TLS provides limited protection against timing attacks. The cost of 58 protecting against timing attacks widely varies depending on the granularity of 64 towards a model of fully timing-invariant code, but has not reached this point 68 physical side channels as well. Remote and physical timing attacks are covered 75 #### Local non-timing side channels 82 Mbed TLS doesn't make any security guarantees against local non-timing-based 83 side channel attacks. If local non-timing attacks are present in a use case or [all …]
|
/third_party/node/test/fixtures/wpt/user-timing/resources/ |
D | webperftestharness.js | 76 …wp_test(function() { assert_true(performanceNamespace.timing[attribute_name] > 0, msg); }, msg, pr… 80 …est(function() { assert_true(performanceNamespace.timing[attribute_name] >= performanceNamespace.t… 86 test_greater_than(performanceNamespace.timing[attribute_name], greater_than, msg, properties); 92 test_equals(performanceNamespace.timing[attribute_name], equals, test_msg, properties);
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_timing.function | 3 /* This test module exercises the timing module. Since, depending on the 4 * underlying operating system, the timing routines are not always reliable, 5 * this suite only performs very basic sanity checks of the timing API. 10 #include "mbedtls/timing.h"
|
/third_party/node/deps/npm/docs/content/using-npm/ |
D | logging.md | 62 The [`--timing` config](/using-npm/config#timing) can be set which does a few 66 1. Write timing information to a process specific timing file in the cache or `logs-dir` 67 1. Output timing information to the terminal 72 Sometimes it is helpful to get timing information without outputting anything to the terminal. For 74 `--timing --silent` which will still write the timing file, but not output anything to the terminal
|
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | Timer.java | 20 private boolean timing = false; field in Timer 29 timing = true; in start() 35 if (timing) { in getDuration() 37 timing = false; in getDuration()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/ |
D | Timer.java | 23 private boolean timing = false; field in Timer 32 timing = true; in start() 38 if (timing) { in getDuration() 40 timing = false; in getDuration()
|
/third_party/mesa3d/.gitlab-ci/ |
D | all-skips.txt | 6 # reliable to be run in parallel with other tests due to CPU-side timing. 15 # These are sensitive to CPU timing, and would need to be run in isolation 17 glx@glx_arb_sync_control@timing.*
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/bin/ |
D | audit.js | 39 .then(async ({ timing, result: tree }) => { property 48 ? `resolved ${tree.inventory.size} deps in ${timing.seconds}` 49 : `done in ${timing.seconds}`
|
D | virtual.js | 8 .then(async ({ timing, result: tree }) => { property 13 return `read ${tree.inventory.size} deps in ${timing.ms}`
|
D | ideal.js | 8 .then(async ({ timing, result: tree }) => { property 13 return `resolved ${tree.inventory.size} deps in ${timing.seconds}`
|
D | actual.js | 8 .then(async ({ timing, result: tree }) => { property 18 return `read ${tree.inventory.size} deps in ${timing.ms}`
|
D | funding.js | 22 .then(({ timing, result: tree }) => { property 36 return `read ${tree.inventory.size} deps in ${timing.ms}`
|
D | reify.js | 38 .then(async ({ timing, result: tree }) => { property 46 return `resolved ${tree.inventory.size} deps in ${timing.seconds}`
|
/third_party/node/deps/npm/test/lib/ |
D | npm.js | 65 t.match(logs.timing.filter(([p]) => p === 'npm:load'), [ 146 ...logs.timing.filter(([p]) => p === 'npm:load:whichnode'), 148 ...logs.timing.filter(([p]) => p === 'npm:load'), 456 t.match(logs.timing, [ 473 config: { timing: true }, property 480 t.match(npm.timingFile, /-timing.json$/) 501 config: { timing: false }, property 509 [{ loglevel: 'silly', timing: true }, true, true], property 510 [{ loglevel: 'silent', timing: true }, false, false], property 518 t.equal(!!display.timing.length, expectedTiming, 'timing display')
|
/third_party/nghttp2/src/ |
D | nghttp.cc | 353 timing.state = RequestState::ON_REQUEST; in record_request_start_time() 354 timing.request_start_time = get_time(); in record_request_start_time() 358 timing.state = RequestState::ON_RESPONSE; in record_response_start_time() 359 timing.response_start_time = get_time(); in record_response_start_time() 363 timing.state = RequestState::ON_COMPLETE; in record_response_end_time() 364 timing.response_end_time = get_time(); in record_response_end_time() 1488 timing.system_start_time = std::chrono::system_clock::now(); in record_start_time() 1489 timing.start_time = get_time(); in record_start_time() 1493 timing.domain_lookup_end_time = get_time(); in record_domain_lookup_end_time() 1497 timing.connect_end_time = get_time(); in record_connect_end_time() [all …]
|
/third_party/node/deps/npm/lib/utils/ |
D | display.js | 121 timing, 142 log.levels.timing = log.levels[loglevel] + (timing ? 1 : -1)
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls-80/mount-origin/ |
D | example.js | 5 if (performance && performance.timing.nextHopProtocol) { 6 transport_protocol = performance.timing.nextHopProtocol;
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls/mount-origin/ |
D | example.js | 5 if ( performance && performance.timing.nextHopProtocol ) { 6 transport_protocol = performance.timing.nextHopProtocol;
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls-mem/mount-origin/ |
D | example.js | 5 if ( performance && performance.timing.nextHopProtocol ) { 6 transport_protocol = performance.timing.nextHopProtocol;
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/VK_GOOGLE_display_timing/ |
D | queries.txt | 24 To accomplish this, applications need various timing information about the 117 [open,refpage='vkGetPastPresentationTimingGOOGLE',desc='Obtain timing of a previously-presented ima… 119 The implementation will maintain a limited amount of history of timing 121 Because of the asynchronous nature of the presentation engine, the timing 129 To asynchronously query the presentation engine, for newly-available timing 135 * pname:swapchain is the swapchain to obtain presentation timing 144 timing records for the given pname:swapchain is returned in 151 newly-available timing records, at most pname:pPresentationTimingCount 153 of ename:VK_SUCCESS, to indicate that not all the available timing records 159 [open,refpage='VkPastPresentationTimingGOOGLE',desc='Structure containing timing information about … [all …]
|
D | queries.adoc | 24 To accomplish this, applications need various timing information about the 117 [open,refpage='vkGetPastPresentationTimingGOOGLE',desc='Obtain timing of a previously-presented ima… 119 The implementation will maintain a limited amount of history of timing 121 Because of the asynchronous nature of the presentation engine, the timing 129 To asynchronously query the presentation engine, for newly-available timing 135 * pname:swapchain is the swapchain to obtain presentation timing 144 timing records for the given pname:swapchain is returned in 151 newly-available timing records, at most pname:pPresentationTimingCount 153 of ename:VK_SUCCESS, to indicate that not all the available timing records 159 [open,refpage='VkPastPresentationTimingGOOGLE',desc='Structure containing timing information about … [all …]
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/bin/lib/ |
D | timers.js | 21 if (options.timing) { 22 … log.info('timeEnd', `${name} ${elapsed / 1e9}s`, log.meta({ force: options.timing === 'always' }))
|
/third_party/typescript/tests/baselines/reference/ |
D | indexTypeCheck.types | 126 public addTimingFor(name: string, timing: number) { 127 >addTimingFor : (name: string, timing: number) => void 129 >timing : number
|