| /third_party/mesa3d/.gitlab-ci/b2c/ |
| D | generate_b2c.py | 30 parser.add_argument('--ci-job-id') 31 parser.add_argument('--container-cmd') 32 parser.add_argument('--initramfs-url') 33 parser.add_argument('--job-success-regex') 34 parser.add_argument('--job-warn-regex') 35 parser.add_argument('--kernel-url') 36 parser.add_argument('--log-level', type=int) 37 parser.add_argument('--poweroff-delay', type=int) 38 parser.add_argument('--session-end-regex') 39 parser.add_argument('--session-reboot-regex') [all …]
|
| /third_party/node/deps/npm/node_modules/retry/ |
| D | Readme.md | 1 <!-- badges/ --> 2 …[Build Status](https://secure.travis-ci.org/tim-kos/node-retry.png?branch=master)](http://travis-c… 3 …[codecov](https://codecov.io/gh/tim-kos/node-retry/branch/master/graph/badge.svg)](https://codecov… 4 <!-- /badges --> 22 means the last attempt is made after `17 minutes and 3 seconds`. 80 * `minTimeout`: The number of milliseconds before starting the first retry. Default is `1000`. 94 to tune for `10` attempts in `5 minutes`, you can use this equation: 96  103 * `5 * 60 * 1000`: The desired total amount of time for retrying in ms (5 minutes) 109 [article]: http://dthain.blogspot.com/2009/02/exponential-backoff-in-distributed.html [all …]
|
| /third_party/node/deps/npm/node_modules/promise-retry/node_modules/retry/ |
| D | README.md | 17 means the last attempt is made after `17 minutes and 3 seconds`. 74 * `minTimeout`: The number of milliseconds before starting the first retry. Default is `1000`. 88 to tune for `10` attempts in `5 minutes`, you can use this equation: 90  97 * `5 * 60 * 1000`: The desired total amount of time for retrying in ms (5 minutes) 103 [article]: http://dthain.blogspot.com/2009/02/exponential-backoff-in-distributed.html 107 Returns a new `timeout` (integer in milliseconds) based on the given parameters. 109 …timeout should be calculated. If your retry operation was executed 4 times you had one attempt and… 113 …timeouts for reinserting an item, see [issue #13](https://github.com/tim-kos/node-retry/issues/13). 134 a timeout given in milliseconds. [all …]
|
| /third_party/mesa3d/.gitlab-ci/test/ |
| D | gitlab-ci.yml | 7 - !reference [default, before_script] 9 - rm -rf install 10 - tar -xf artifacts/install.tar 11 …- echo -e "\e[0Ksection_start:$(date +%s):ldd_section[collapsed=true]\r\e[0KChecking ldd on driver… 12 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \; 13 - echo -e "\e[0Ksection_end:$(date +%s):ldd_section\r\e[0K" 18 - results/ 20 .test-gl: 22 - .test 23 - .use-debian/x86_test-gl [all …]
|
| /third_party/toybox/toys/other/ |
| D | timeout.c | 1 /* timeout.c - Run command line with a timeout 7 USE_TIMEOUT(NEWTOY(timeout, "<2^(foreground)(preserve-status)vk:s(signal):", TOYFLAG_USR|TOYFLAG_BI… 9 config TIMEOUT 10 bool "timeout" 13 usage: timeout [-k DURATION] [-s SIGNAL] DURATION COMMAND... 19 (minutes), "h" (hours), "d" (days), or "s" (seconds, the default). 21 -s Send specified signal (default TERM) 22 -k Send KILL signal if child still running this long after first signal 23 -v Verbose 24 --foreground Don't create new process group [all …]
|
| /third_party/mesa3d/.gitlab-ci/lava/ |
| D | lava_job_submitter.py | 3 # Copyright (C) 2020 - 2022 Collabora Limited 8 # SPDX-License-Identifier: MIT 46 # Timeout in seconds to decide if the device from the dispatched LAVA job has 57 # How many retries should be made when a timeout happen. 60 # How many attempts should be made when a timeout happen during LAVA device boot. 75 "job": {"minutes": args.job_timeout}, 76 "action": {"minutes": 3}, 78 "depthcharge-action": { 79 "minutes": 3 * NUMBER_OF_ATTEMPTS_LAVA_BOOT, 91 'timeout': { 'minutes': 10 }, [all …]
|
| /third_party/typescript/src/testRunner/ |
| D | externalCompileRunner.ts | 25 …* The first test should be a describe/it block that sets up the harness's compiler instance appro… 31 // eslint-disable-next-line @typescript-eslint/no-this-alias 34 this.timeout(600_000); // 10 minutes 41 // eslint-disable-next-line @typescript-eslint/no-this-alias 43 const timeout = 600_000; // 10 minutes constant 45 this.timeout(timeout); 59 …exec("git", ["--work-tree", submoduleDir, "clone", config.cloneUrl, path.join(submoduleDir, ".git"… 62 …exec("git", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "reset", "… 63 …exec("git", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "clean", "… 64 …exec("git", ["--git-dir", path.join(submoduleDir, ".git"), "--work-tree", submoduleDir, "pull", "-… [all …]
|
| /third_party/mesa3d/.gitlab-ci/bare-metal/ |
| D | fastboot_run.py | 36 args.dev, "results/serial-output.txt", "R SERIAL> ") 37 self.fastboot = "fastboot boot -s {ser} artifacts/fastboot.img".format( 49 def logged_system(self, cmd, timeout=60): argument 52 return subprocess.call(cmd, shell=True, timeout=timeout) 54 self.print_error("timeout, restarting run...") 62 for line in self.ser.lines(timeout=2 * 60, phase="bootloader"): 81 print_more_lines = -1 82 for line in self.ser.lines(timeout=self.test_timeout, phase="test"): 86 print_more_lines -= 1 88 if re.search("---. end Kernel panic", line): [all …]
|
| /third_party/flutter/flutter/packages/flutter_test/lib/src/ |
| D | test_compat.dart | 2 // Use of this source code is governed by a BSD-style license that can be 9 import 'package:test_api/src/frontend/timeout.dart'; // ignore: implementation_imports 29 // If no declarer is defined, this test is being run via `flutter run -t test_file.dart`. 81 // first [LiveTest.onStateChange] event. 83 // Once the test finishes, use await null to do a coarse-grained event 84 // loop pump to avoid starving non-microtask events. 104 // TODO(nweiz): This and other top-level functions should throw exceptions if 113 /// [platform selector]: https://github.com/dart-lang/test/tree/master/pkgs/test#platform-selectors 115 /// If [timeout] is passed, it's used to modify or replace the default timeout 116 /// of 30 seconds. Timeout modifications take precedence in suite-group-test [all …]
|
| D | widget_tester.dart | 2 // Use of this source code is governed by a BSD-style license that can be 53 /// There are two kinds of timeouts that can be specified. The `timeout` 54 /// argument specifies the backstop timeout implemented by the `test` package. 55 /// If set, it should be relatively large (minutes). It defaults to ten minutes 60 /// The `initialTimeout` argument specifies the timeout implemented by the 65 /// this timeout (even after calling `addTime`) is the one specified by the 66 /// `timeout` argument. 85 /// timeout and how to manually increase timeouts. 101 test_package.Timeout timeout, 124 timeout: initialTimeout, [all …]
|
| D | binding.dart | 2 // Use of this source code is governed by a BSD-style license that can be 131 /// Increase the timeout for the current test by the given duration. 135 /// tests do not have such a timeout. Tests run using `flutter run` never time 138 /// This method has no effect on the timeout specified via `timeout` on 139 /// [testWidgets]. That timeout is implemented by the `test` package. 141 /// By default, each [pump] and [pumpWidget] call increases the timeout by a 143 /// it by a minute. If there is no timeout in the first place, this has no 148 /// for a timeout to be exceeded by hundreds of milliseconds and for the test 154 /// * [testWidgets], on which a timeout can be set using the `timeout` 156 /// * [defaultTestTimeout], the maximum that the timeout can reach. [all …]
|
| /third_party/python/Lib/test/support/ |
| D | threading_helper.py | 12 # Threading support to prevent reporting refleaks when running regrtest.py -R 36 # Display a warning at the first iteration 40 f"{values[0] - original_values[0]} threads " 69 def wait_threads_exit(timeout=None): argument 71 bpo-31234: Context manager to wait until all threads created in the with 83 if timeout is None: 84 timeout = support.SHORT_TIMEOUT 90 deadline = start_time + timeout 96 dt = time.monotonic() - start_time 97 msg = (f"wait_threads() failed to cleanup {count - old_count} " [all …]
|
| /third_party/nghttp2/doc/ |
| D | h2load.1 | 4 .nr rst2man-indent-level 0 7 \\$1 \\n[an-margin] 8 level \\n[rst2man-indent-level] 9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] 10 - 11 \\n[rst2man-indent0] 12 \\n[rst2man-indent1] 13 \\n[rst2man-indent2] 18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] 19 . nr rst2man-indent-level +1 [all …]
|
| D | h2load.1.rst | 10 -------- 15 ----------- 23 are used, then first URI is used and then 2nd URI, and 25 URIs, if present, are ignored. Those in the first URI 30 ------- 32 .. option:: -n, --requests=<N> 35 with :option:`--timing-script-file` option, this option specifies 38 is ignored if timing-based benchmarking is enabled (see 39 :option:`--duration` option). 43 .. option:: -c, --clients=<N> [all …]
|
| /third_party/flutter/flutter/examples/flutter_gallery/test_driver/ |
| D | transitions_perf_test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 21 // --trace-startup, as we do in this test, the VM stores trace events in an 39 // 1- In widget tests such as examples/flutter_gallery/test/smoke_test.dart 40 // 2- In driver tests such as examples/flutter_gallery/test_driver/transitions_perf_test.dart 41 // 3- In on-device instrumentation tests such as examples/flutter_gallery/test/live_smoketest.dart 70 // Save the duration of the first frame after each 'Start Transition' event. 97 error.writeln(' - $routeName recorded $count values.'); 116 error.write('\n - $eventName $routeName .'); 156 dyScroll: -48.0, 158 timeout: const Duration(seconds: 30), [all …]
|
| /third_party/lwip/src/include/lwip/apps/ |
| D | sntp_opts.h | 7 * Copyright (c) 2007-2009 Frédéric Bernon, Simon Goldschmidt 98 * - 0 to turn off sanity checks (default; smaller code) 99 * - >= 1 to check address and port of the response packet to ensure the 101 * - >= 2 to check returned Originate Timestamp against Transmit Timestamp 103 * - >= 3 @todo: discard reply if any of the VN, Stratum, or Transmit Timestamp 105 * - >= 4 @todo: to check that the Root Delay and Root Dispersion fields are each 114 /** Enable round-trip delay compensation. 115 * Compensate for the round-trip delay by calculating the clock offset from 118 * The calculation requires compiler support for 64-bit integers. Also, either 120 * for setting the system clock with sub-second precision. Likewise, either [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/lib/src/base/ |
| D | logger.dart | 2 // Use of this source code is governed by a BSD-style license that can be 17 const Duration _kSlowOperation = Duration(minutes: 2); 30 /// Defaults to 2 minutes. 70 /// by this much more than the first line, if wrapping is enabled in 108 /// by this much more than the first line, if wrapping is enabled in 131 /// The `timeout` argument sets a duration after which an additional message 144 @required Duration timeout, 213 @required Duration timeout, 220 // Ignore nested progresses; return a no-op status object. 222 timeout: timeout, [all …]
|
| /third_party/python/Lib/ |
| D | nntplib.py | 2 - RFC 977: Network News Transfer Protocol 3 - RFC 2980: Common NNTP Extensions 4 - RFC 3977: Network News Transfer Protocol (version 2) 10 >>> resp, count, first, last, name = s.group('comp.lang.python') 11 >>> print('Group', name, 'has', count, 'articles, range', first, 'to', last) 13 >>> resp, subs = s.xhdr('subject', '{0}-{1}'.format(first, last)) 34 # - all commands are encoded as UTF-8 data (using the "surrogateescape" 36 # - all responses are decoded as UTF-8 data (using the "surrogateescape" 38 # - the `file` argument to various methods is keyword-only 40 # - NNTP.date() returns a datetime object [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/ |
| D | README-WPS | 1 hostapd and Wi-Fi Protected Setup (WPS) 10 ------------------- 12 Wi-Fi Protected Setup (WPS) is a mechanism for easy configuration of a 16 with PIN method and push-button configuration (PBC) being the most 28 - access point: the WLAN access point 29 - Registrar: a device that control a network and can authorize 33 - Enrollee: a device that is being authorized to use the network 40 More information about WPS is available from Wi-Fi Alliance: 41 http://www.wi-fi.org/wifi-protected-setup 45 ---------------------- [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/ |
| D | README-WPS | 1 hostapd and Wi-Fi Protected Setup (WPS) 10 ------------------- 12 Wi-Fi Protected Setup (WPS) is a mechanism for easy configuration of a 16 with PIN method and push-button configuration (PBC) being the most 28 - access point: the WLAN access point 29 - Registrar: a device that control a network and can authorize 33 - Enrollee: a device that is being authorized to use the network 40 More information about WPS is available from Wi-Fi Alliance: 41 http://www.wi-fi.org/wifi-protected-setup 45 ---------------------- [all …]
|
| /third_party/ltp/testcases/kernel/sched/pthreads/ |
| D | pth_str01.c | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 27 * -Ported 44 int timeout = 30; /* minutes */ variable 109 timeout = atoi(optarg); in parse_args() 110 if (timeout <= 0) in parse_args() 126 "usage: %s [-b <num>] [-d <num>] [-t <num>] [-D]", in parse_args() 129 fprintf(stderr, "\t-b <num>\tbreadth of child nodes\n"); in parse_args() 130 fprintf(stderr, "\t-d <num>\tdepth of child nodes\n"); in parse_args() 132 "\t-t <num>\ttimeout for child communication (in minutes)\n"); in parse_args() 133 fprintf(stderr, "\t-D\t\tdebug mode on\n"); in parse_args() [all …]
|
| D | pth_str03.c | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 28 * -Ported 63 int timeout = 30; /* minutes */ variable 90 /*--------------------------------------------------------------------------------* 95 *--------------------------------------------------------------------------------*/ 128 timeout = atoi(optarg); in parse_args() 129 if (timeout <= 0) in parse_args() 145 "usage: %s [-b <num>] [-d <num>] [-t <num>] [-D]", in parse_args() 148 fprintf(stderr, "\t-b <num>\tbreadth of child nodes\n"); in parse_args() 149 fprintf(stderr, "\t-d <num>\tdepth of child nodes\n"); in parse_args() [all …]
|
| /third_party/flutter/flutter/dev/bots/ |
| D | test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 28 final String dart = path.join(flutterRoot, 'bin', 'cache', 'dart-sdk', 'bin', Platform.isWindows ? … 29 final String pub = path.join(flutterRoot, 'bin', 'cache', 'dart-sdk', 'bin', Platform.isWindows ? '… 30 final String pubCache = path.join(flutterRoot, '.pub-cache'); 49 const Duration _kLongTimeout = Duration(minutes: 45); 50 const Duration _kShortTimeout = Duration(minutes: 5); 54 /// script with the parameter --local-engine=host_debug_unopt to 60 /// SHARD=tool_tests bin/cache/dart-sdk/bin/dart dev/bots/test.dart 61 /// bin/cache/dart-sdk/bin/dart dev/bots/test.dart --local-engine=host_debug_unopt 87 // We run the "pass" and "fail" smoke tests first, and alone, because those [all …]
|
| /third_party/flutter/skia/third_party/externals/icu/source/data/ |
| D | cldr-icu-readme.txt | 3 # Copyright (C) 2010-2014, International Business Machines Corporation and others. 9 # - CLDR (the source of most of the data, and some Java tools) 10 # - ICU4J (used only for checking the converted data) 11 # - ICU4C (the destination for the new data, and the source for some of it) 14 # checked-out. For released CLDR sources, an alternative to checking out sources 29 # plus the xml-apis.jar from the Apache xalan package 30 # (http://xml.apache.org/xalan-j/downloads.html). 40 #---- 49 # Unless you cache the dtds locally by e.g. setting -DCLDR_DTD_CACHE=/tmp, the 51 # Unicode server blocking access and consequent timeout failures. You can [all …]
|
| /third_party/f2fs-tools/tools/sg_write_buffer/ |
| D | sg_cmds_basic.c | 2 * Copyright (c) 1999-2018 Douglas Gilbert. 4 * Use of this source code is governed by a BSD-style 46 #define START_PT_TIMEOUT 120 /* 120 seconds == 2 minutes */ 47 #define LONG_PT_TIMEOUT 7200 /* 7,200 seconds == 120 minutes */ 116 static const char * const pass_through_s = "pass-through"; 163 got = mx_di_len - resid; in sg_cmds_process_helper() 165 pr2ws(" %s requested %d bytes (data-in) but got %d " in sg_cmds_process_helper() 171 return -2; in sg_cmds_process_helper() 175 * call to the pass-through. pt_res is returned from do_scsi_pt(). If valid 177 * stderr); depending on the 'noisy' and 'verbose' settings. Returns -2 for [all …]
|