Home
last modified time | relevance | path

Searched +full:- +full:- +full:session +full:- +full:end +full:- +full:regex (Results 1 – 25 of 61) sorted by relevance

123

/third_party/mesa3d/.gitlab-ci/b2c/
Dgenerate_b2c.py30 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/mesa3d/.gitlab-ci/test/
Dgitlab-ci.yml7 - !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/jerryscript/jerry-core/jcontext/
Djcontext.h7 * http://www.apache.org/licenses/LICENSE-2.0
23 #include "ecma-builtins.h"
24 #include "ecma-helpers.h"
25 #include "ecma-jobqueue.h"
26 #include "jerryscript-port.h"
28 #include "re-bytecode.h"
29 #include "vm-defines.h"
31 #include "jerryscript-debugger-transport.h"
32 #include "js-parser-internal.h"
34 #include "jerryscript-port-default.h"
[all …]
/third_party/node/lib/internal/http2/
Dcore.js3 /* eslint-disable no-use-before-define */
182 const session = stream[kSession];
183 const type = session ? session[kType] : undefined;
191 function debugSessionObj(session, message, ...args) { argument
192 debugSession(session[kType], message, ...args);
195 const kMaxFrameSize = (2 ** 24) - 1;
196 const kMaxInt = (2 ** 32) - 1;
197 const kMaxStreams = (2 ** 32) - 1;
198 const kMaxALTSVC = (2 ** 14) - 2;
200 // eslint-disable-next-line no-control-regex
[all …]
/third_party/toybox/generated/
Dhelp.h1-libc on a nommu system, you'll need to say \"y\" here.\n\nAlthough uclibc lets you detect support…
11 … even when it has a built-in version of that command. This requires\n toybox symlinks to be …
15 #define HELP_toybox_i18n "Support for UTF-8 character sets, and some locale support."
17 …t --help argument in all commands, even ones with a NULL\noptstring. (Use TOYFLAG_NOHELP to disabl…
25 #define HELP_toybox_libcrypto "Use faster hash functions out of external -lcrypto library."
29 #define HELP_toybox_selinux "Include SELinux options in commands such as ls, and add\nSELinux-speci…
35--long | --help | --version | [command] [arguments...]]\n\nWith no arguments, shows available comm…
43-D] [-F] [-R] [-n] [-v] FILE...\n\nRestores the default security contexts for the given files.\n\n
45-p PRI] [-t TAG] MESSAGE...\n\nLogs message to logcat.\n\n-p Use the given priority instead of INF…
51 #define HELP_skeleton_alias "usage: skeleton_alias [-dq] [-b NUMBER]\n\nExample of a second command…
[all …]
/third_party/typescript/
DCONTRIBUTING.md14 …ith a title similar to yours may have been closed as a duplicate of one with a less-findable title.
29 * What version of TypeScript you're using (run `tsc --v`)
63 …e some step-by-step instructions](https://github.com/anitab-org/mentorship-android/wiki/Fork%2C-Cl…
64 4. Install the gulp command line tool: `npm install -g gulp-cli`
67 7. Make sure everything builds and tests pass: `gulp runtests-parallel`
75 … some time, you might want to clone it without the repo's full history using `git clone --depth=1`.
79-root>/built/local/tsc.js` in place of `tsc` in your project. For example, to run `tsc --watch` fr…
100 …* At least one test should fail in the absence of your non-test code changes. If your PR does not …
103 …ns described in [Coding guidelines](https://github.com/Microsoft/TypeScript/wiki/Coding-guidelines)
104 * To avoid line ending issues, set `autocrlf = input` and `whitespace = cr-at-eol` in your git conf…
[all …]
/third_party/node/lib/internal/debugger/
Dinspect_repl.js100 scripts(true) List all scripts (including node-internals)
102 profile Start CPU profiling session.
103 profileEnd Stop current CPU profiling session.
106 Save CPU profiling session to disk as JSON.
132 const dir = StringPrototypeSlice(Path.join(Path.resolve(), 'x'), 0, -1);
149 const nspaces = nchars - s.length;
407 return stylize(`[Profile ${endTime - startTime}${MU}s]`, 'special');
427 const start = MathMax(1, lineNumber - delta + 1);
428 const end = lineNumber + delta + 1;
433 ArrayPrototypeSlice(lines, start - 1, end),
[all …]
/third_party/toybox/toys/posix/
Dps.c1 /* ps.c - show process list
6 * And http://kernel.org/doc/Documentation/filesystems/proc.txt Table 1-4
9 * Deviations from posix: no -n because /proc/self/wchan exists; we use -n to
11 * Posix says default output should have field named "TTY" but if you "-o tty"
13 * Similarly -f outputs USER but calls it UID (we call it USER).
14 * It also says that -o "args" and "comm" should behave differently but use
16 * Select by session id is -s not -g. Posix doesn't say truncated fields
17 * should end with "+" but it's pretty common behavior.
19 * Posix defines -o ADDR as "The address of the process" but the process
21 * field always prints "-" with an alignment of 1, which is why it has 11
[all …]
/third_party/toybox/porting/liteos_a/toys/posix/
Dps.c1 /* ps.c - show process list
6 * And http://kernel.org/doc/Documentation/filesystems/proc.txt Table 1-4
9 * Deviations from posix: no -n because /proc/self/wchan exists; we use -n to
11 * Posix says default output should have field named "TTY" but if you "-o tty"
13 * Similarly -f outputs USER but calls it UID (we call it USER).
14 * It also says that -o "args" and "comm" should behave differently but use
16 * Select by session id is -s not -g. Posix doesn't say truncated fields
17 * should end with "+" but it's pretty common behavior.
19 * Posix defines -o ADDR as "The address of the process" but the process
21 * field always prints "-" with an alignment of 1, which is why it has 11
[all …]
/third_party/libabigail/tests/lib/
Dcatch.hpp1 // SPDX-License-Identifier: BSL-1.0
4 * Generated: 2022-04-12 22:37:23.260201
5 * ----------------------------------------------------------
35 # pragma clang diagnostic ignored "-Wpadded"
36 # pragma clang diagnostic ignored "-Wswitch-enum"
37 # pragma clang diagnostic ignored "-Wcovered-switch-default"
40 // Because REQUIREs trigger GCC's -Wparentheses, and because still
43 # pragma GCC diagnostic ignored "-Wparentheses" // See #674 for details
46 # pragma GCC diagnostic ignored "-Wunused-variable"
47 # pragma GCC diagnostic ignored "-Wpadded"
[all …]
/third_party/flutter/skia/platform_tools/android/bin/linux/
Dperfhost ... s': not a documentation directory. perf help [--all] [--man|-- ...
/third_party/skia/platform_tools/android/bin/linux/
Dperfhost ... s': not a documentation directory. perf help [--all] [--man|-- ...
/third_party/typescript/src/testRunner/unittests/tsserver/
DtypingsInstaller.ts210 … it("inferred project - type acquisition with disableFilenameBasedTypeAcquisition:true", () => {
251 …ere requested as a result of typings discovery") > 0, "Should not request filename-based typings");
254 it("external project - no type acquisition, no .d.ts/js files", () => {
278 // in this case project contain only ts files - no auto discovery
282 it("external project - deduplicate from local @types packages", () => {
313 it("external project - no auto in typing acquisition, no .d.ts/js files", () => {
338 … // in this case project contain only ts files - no auto discovery even if type acquisition is set
342 it("external project - autoDiscovery = true, no .d.ts/js files", () => {
380 // auto is set in type acquisition - use it even if project contains only .ts files
384 it("external project - no type acquisition, with only js, jsx, d.ts files", () => {
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/
DDawnTest.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
37 #include <regex>
174 // In a Windows Remote Desktop session there are two adapters named "Microsoft Basic Render in operator <<()
197 std::string sanitizedName = std::regex_replace(paramName, std::regex("[^a-zA-Z0-9]+"), "_"); in SanitizeParamName()
201 sanitizedName.resize(sanitizedName.length() - 1); in SanitizeParamName()
213 targetLength -= testFormat.length() - 220; in SanitizeParamName()
214 targetLength -= suffix.length(); in SanitizeParamName()
243 // parameterizations all selected adapters. We drop the instance at the end of this function in DawnTestEnvironment()
257 size_t argLen = 0; // Set when parsing --arg=X arguments in ParseArgs()
259 if (strcmp("-w", argv[i]) == 0 || strcmp("--use-wire", argv[i]) == 0) { in ParseArgs()
[all …]
/third_party/vk-gl-cts/android/cts/runner/src/com/drawelements/deqp/runner/
DDeqpTestRunner.java8 * http://www.apache.org/licenses/LICENSE-2.0
70 import java.util.regex.Matcher;
71 import java.util.regex.Pattern;
78 @OptionClass(alias="deqp-test-runner")
88 private static final String CASE_LIST_FILE_NAME = "dEQP-TestCaseList.txt";
106 @Option(name="deqp-package",
110 @Option(name="deqp-gl-config-name",
114 @Option(name="deqp-caselist-file",
118 @Option(name="deqp-screen-rotation",
122 @Option(name="deqp-surface-type",
[all …]
/third_party/python/Doc/whatsnew/
D3.2.rst13 a beta release, please use the tracker instead -- this helps avoid
40 sufficient; the e-mail address isn't necessary. It's helpful to
59 :pep:`392` - Python 3.2 Release Schedule
82 :pep:`384` - Defining a Stable ABI
95 third-party module. Being more fully featured than its predecessor, the
96 :mod:`argparse` module is now the preferred module for command-line processing.
115 parser.add_argument('-u', '--user', # -u or --user option
121 >>> cmd = 'deploy sneezy.example.com sleepy.example.com -u skycaptain'
132 >>> parser.parse_args('-h'.split())
134 usage: manage_cloud.py [-h] -u USER
[all …]
D3.4.rst20 updates -- in such cases, end users will be much better served by partial
50 sufficient; the e-mail address isn't necessary.
70 :pep:`429` -- Python 3.4 Release Schedule
74 Summary -- Release Highlights
86 * :ref:`pip should always be available <whatsnew-pep-453>` (:pep:`453`).
87 * :ref:`Newly created file descriptors are non-inheritable <whatsnew-pep-446>`
89 * command line option for :ref:`isolated mode <whatsnew-isolated-mode>`
91 * :ref:`improvements in the handling of codecs <codec-handling-improvements>`
93 * :ref:`A ModuleSpec Type <whatsnew-pep-451>` for the Import System
96 <whatsnew-marshal-3>` (:issue:`16475`).
[all …]
/third_party/python/Lib/test/test_asyncio/
Dtest_events.py298 self.assertTrue(0.08 <= t1-t0 <= 0.8, t1-t0)
405 # at least on Linux -- see man select.
466 ValueError, self.loop.add_signal_handler, -1, my_handler)
468 ValueError, self.loop.remove_signal_handler, -1)
546 # zero-length address for UNIX socket.
649 # zero-length address for UNIX socket.
1372 wpipeobj = io.open(wpipe, 'w', 1024, encoding="utf-8")
1638 elapsed = time.monotonic() - start
1661 await asyncio.sleep(1e-2)
1662 await asyncio.sleep(1e-4)
[all …]
/third_party/sqlite/src/
Dshell.c5 ** "shell.c" file used to implement the SQLite command-line shell.
13 ** source file to help make the command-line program easier to compile.
41 ** Optionally #include a user-defined header, whereby compilation options
64 ** the browser-mode build has much different user input requirements
98 ** Enable large-file support for fopen() and friends on unix.
224 /* Windows CE (arm-wince-mingw32ce-gcc) does not provide isatty()
226 * overridden with the -batch command line option.
284 /* Return the current wall-clock time */
290 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
291 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
[all …]
/third_party/typescript/lib/
Dtsserverlibrary.js5 License at http://www.apache.org/licenses/LICENSE-2.0
10 MERCHANTABLITY OR NON-INFRINGEMENT.
52 …if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; c…
102 // Treats -0 === 0 and NaN === NaN
168 data.size--;
292 // eslint-disable-next-line @typescript-eslint/no-inferrable-types
297 Comparison[Comparison["LessThan"] = -1] = "LessThan";
309 // eslint-disable-next-line no-in-operator
318 // eslint-disable-next-line no-in-operator
398 for (var i = array.length - 1; i >= 0; i--) {
[all …]
Dtsserver.js5 License at http://www.apache.org/licenses/LICENSE-2.0
10 MERCHANTABLITY OR NON-INFRINGEMENT.
53 …if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; c…
98 // eslint-disable-next-line @typescript-eslint/no-inferrable-types
103 Comparison[Comparison["LessThan"] = -1] = "LessThan";
115 // eslint-disable-next-line no-in-operator
124 // eslint-disable-next-line no-in-operator
204 for (var i = array.length - 1; i >= 0; i--) {
269 return { value: [arrayA[i - 1], arrayB[i - 1]], done: false };
327 for (var i = array.length - 1; i >= 0; i--) {
[all …]
/third_party/flutter/engine/flutter/ci/licenses_golden/
Dlicenses_fuchsia19 FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libasync-default.so
24 FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libtrace-engine.so
25 FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libtrace-provider-so.so
27 FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libasync-default.so
33 FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libtrace-engine.so
34 FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libtrace-provider-so.so
136 FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/regex.h
226 FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libasync-default.so
231 FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libtrace-engine.so
232 FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libtrace-provider-so.so
[all …]
/third_party/cups-filters/utils/
Dcups-browsed.c2 This file is part of cups-filters.
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
40 #include <regex.h>
46 #include <avahi-client/client.h>
47 #include <avahi-client/lookup.h>
49 #include <avahi-glib/glib-watch.h>
50 #include <avahi-common/malloc.h>
51 #include <avahi-common/error.h>
128 #include "cups-notifier.h"
131 #define CUPS_BROWSED_MARK "cups-browsed"
[all …]
/third_party/gstreamer/gstplugins_good/
DChangeLog3 2022-06-15 23:36:18 +0100 Tim-Philipp Müller <tim@centricular.com>
8 * gst-plugins-good.doap:
12 2022-06-15 23:36:10 +0100 Tim-Philipp Müller <tim@centricular.com>
17 2022-05-18 10:23:15 +0300 Sebastian Dröge <sebastian@centricular.com>
19 * gst/matroska/matroska-demux.c:
20 … matroskademux: Avoid integer-overflow resulting in heap corruption in WavPack header handling code
26 CVE: CVE-2022-1920
27 https://gstreamer.freedesktop.org/security/sa-2022-0004.html
28 Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1226
29 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2613>
[all …]
/third_party/python/Misc/
DHISTORY2 --------------
13 Release date: 2017-01-17
21 Release date: 2017-01-02
24 -----------------
26 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
29 - Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug
33 -------
35 - Issue #28563: Fixed possible DoS and arbitrary code execution when handle
39 - In the curses module, raise an error if window.getstr() or window.instr() is
42 - Issue #27783: Fix possible usage of uninitialized memory in operator.methodcaller.
[all …]

123