| /third_party/rust/rust/src/etc/completions/ |
| D | x.py.ps1 | 5 Register-ArgumentCompleter -Native -CommandName 'x.py' -ScriptBlock { 11 for ($i = 1; $i -lt $commandElements.Count; $i++) { 13 if ($element -isnot [StringConstantExpressionAst] -or 14 $element.StringConstantType -ne [StringConstantType]::BareWord -or 15 $element.Value.StartsWith('-') -or 16 $element.Value -eq $wordToComplete) { 20 }) -join ';' 24 …[CompletionResult]::new('--config', 'config', [CompletionResultType]::ParameterName, 'TOML configu… 25 …ompletionResult]::new('--build-dir', 'build-dir', [CompletionResultType]::ParameterName, 'Build di… 26 …[CompletionResult]::new('--build', 'build', [CompletionResultType]::ParameterName, 'build target o… [all …]
|
| D | x.py.fish | 1 complete -c x.py -n "__fish_use_subcommand" -l config -d 'TOML configuration file for build' -r -F 2 complete -c x.py -n "__fish_use_subcommand" -l build-dir -d 'Build directory, overrides `build.buil… 3 complete -c x.py -n "__fish_use_subcommand" -l build -d 'build target of the stage0 compiler' -r -f 4 complete -c x.py -n "__fish_use_subcommand" -l host -d 'host targets to build' -r -f 5 complete -c x.py -n "__fish_use_subcommand" -l target -d 'target targets to build' -r -f 6 complete -c x.py -n "__fish_use_subcommand" -l exclude -d 'build paths to exclude' -r -F 7 complete -c x.py -n "__fish_use_subcommand" -l rustc-error-format -r -f 8 complete -c x.py -n "__fish_use_subcommand" -l on-fail -d 'command to run on failure' -r -f -a "(__… 9 …-c x.py -n "__fish_use_subcommand" -l stage -d 'stage to build (indicates compiler to use/test, e.… 10 … -c x.py -n "__fish_use_subcommand" -l keep-stage -d 'stage(s) to keep without recompiling (pass m… [all …]
|
| D | x.py.sh | 5 prev="${COMP_WORDS[COMP_CWORD-1]}" 45 bootstrap,run) 64 …-v -i -j -h --verbose --incremental --config --build-dir --build --host --target --exclude --inclu… 65 if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then 66 COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) 70 --config) 71 COMPREPLY=($(compgen -f "${cur}")) 74 --build-dir) 75 COMPREPLY=($(compgen -f "${cur}")) 78 --build) [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/xtask/src/ |
| D | flags.rs | 8 /// Run custom build command. 11 /// Install rust-analyzer server or editor plugin. 14 optional --client 15 /// One of 'code', 'code-exploration', 'code-insiders', 'codium', or 'code-oss'. 16 optional --code-bin name: String 19 optional --server 21 optional --mimalloc 23 optional --jemalloc 26 cmd fuzz-tests {} 29 optional --dry-run [all …]
|
| /third_party/pcre2/pcre2/.github/workflows/ |
| D | cifuzz.yml | 5 runs-on: ubuntu-latest 7 - name: Build Fuzzers 9 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master 11 oss-fuzz-project-name: 'pcre2' 12 dry-run: false 13 - name: Run Fuzzers 14 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master 16 oss-fuzz-project-name: 'pcre2' 17 fuzz-seconds: 300 18 dry-run: false [all …]
|
| /third_party/nghttp2/.github/workflows/ |
| D | fuzz.yml | 3 permissions: read-all 6 runs-on: ubuntu-latest 8 - name: LLVM workaround 9 run: | 10 # https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917 12 # high-entropy ASLR in much newer kernels that GitHub runners are 15 - name: Build Fuzzers 16 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master 18 oss-fuzz-project-name: 'nghttp2' 19 dry-run: false [all …]
|
| /third_party/python/Tools/scripts/ |
| D | fixnotice.py | 12 -h / --help 15 --oldnotice=file 19 --newnotice=file 23 --dry-run 25 would change. When used with -v, a status will be printed for every 28 -v / --verbose 35 Copyright (c) 1995-2000, Corporation for National Research Initiatives. 36 Copyright (c) 1990-1995, Stichting Mathematisch Centrum. 64 'dry-run', 'verbose']) 69 if opt in ('-h', '--help'): [all …]
|
| D | cleanfuture.py | 3 """cleanfuture [-d][-r][-v] path ... 5 -d Dry run. Analyze, but don't make any changes to, files. 6 -r Recurse. Search for all .py files in subdirectories too. 7 -v Verbose. Print informative msgs. 14 .py files within the directory will be examined, and, if the -r option is 19 does change a file, the changed file is a fixed-point (i.e., running 53 if msg[-1:] != '\n': 66 if o == '-d': 68 elif o == '-r': 70 elif o == '-v': [all …]
|
| /third_party/skia/third_party/externals/tint/tools/src/cmd/roll-release/ |
| D | main.go | 7 // http://www.apache.org/licenses/LICENSE-2.0 15 // roll-release is a tool to roll changes in Tint release branches into Dawn, 37 "github.com/go-git/go-git/v5" 38 "github.com/go-git/go-git/v5/config" 39 "github.com/go-git/go-git/v5/plumbing" 40 "github.com/go-git/go-git/v5/plumbing/transport" 41 git_http "github.com/go-git/go-git/v5/plumbing/transport/http" 42 "github.com/go-git/go-git/v5/storage/memory" 46 toolName = "roll-release" 47 gitCommitMsgHookURL = "https://gerrit-review.googlesource.com/tools/hooks/commit-msg" [all …]
|
| /third_party/jerryscript/tools/ |
| D | gen-doctest.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 32 def __init__(self, outdir, dry): argument 35 :param dry: if True, don't create the doctest files but print the file 39 self._dry = dry 79 decl['test'] = 'run' 162 auto-numbered naming scheme), and `test` determines the test action to be performed on 163 the extracted code (valid options are "compile", "link", and the default "run"). 165 parser.add_argument('-d', '--dir', metavar='NAME', default=os.getcwd(), 167 parser.add_argument('--dry', action='store_true', 174 extractor = DoctestExtractor(args.dir, args.dry)
|
| /third_party/typescript/tests/baselines/reference/tsbuild/sample1/ |
| D | does-not-write-any-files-in-a-dry-build.js | 3 /// <reference no-default-lib="true"/> 94 export function run() { function 113 /lib/tsc --b /src/tests --dry 114 [[90m12:00:06 AM[0m] A non-dry build would build project '/src/core/tsconfig.json' 116 [[90m12:00:07 AM[0m] A non-dry build would build project '/src/logic/tsconfig.json' 118 [[90m12:00:08 AM[0m] A non-dry build would build project '/src/tests/tsconfig.json'
|
| /third_party/skia/site/docs/dev/contrib/ |
| D | cqkeywords.md | 2 --- 6 --- 18 ------ 23 To do a dry run through the CQ please use Gerrit's [CQ Dry 24 Run](https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/G5-X0_tfmok) 29 The CQ will run through its list of verifiers (reviewer check, trybots, tree check, 33 No-Dependency-Checks 34 -------------------- 36 No-Dependency-Checks: true 42 Cq-Include-Trybots [all …]
|
| /third_party/skia/m133/site/docs/dev/contrib/ |
| D | cqkeywords.md | 2 --- 6 --- 18 ------ 23 To do a dry run through the CQ please use Gerrit's [CQ Dry 24 Run](https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/G5-X0_tfmok) 29 The CQ will run through its list of verifiers (reviewer check, trybots, tree check, 33 No-Dependency-Checks 34 -------------------- 36 No-Dependency-Checks: true 42 Cq-Include-Trybots [all …]
|
| /third_party/rust/crates/once_cell/xtask/src/ |
| D | main.rs | 10 fn main() -> xshell::Result<()> { in main() 18 cmd!(sh, "cargo test --workspace --no-run").run()?; in main() 24 for &release in &[None, Some("--release")] { in main() 25 cmd!(sh, "cargo test --features unstable {release...}").run()?; in main() 28 "cargo test --no-default-features --features unstable,std,parking_lot {release...}" in main() 30 .run()?; in main() 34 cmd!(sh, "cargo test --no-default-features --features unstable --test it").run()?; in main() 35 cmd!(sh, "cargo test --no-default-features --features unstable,alloc --test it").run()?; in main() 37 cmd!(sh, "cargo test --no-default-features --features critical-section").run()?; in main() 38 cmd!(sh, "cargo test --features critical-section").run()?; in main() [all …]
|
| /third_party/python/Tools/msi/ |
| D | uploadrelease.bat | 17 if "%1" EQU "-h" goto Help 18 if "%1" EQU "-o" (set HOST=%~2) && shift && shift && goto CheckOpts 19 if "%1" EQU "--host" (set HOST=%~2) && shift && shift && goto CheckOpts 20 if "%1" EQU "-u" (set USER=%~2) && shift && shift && goto CheckOpts 21 if "%1" EQU "--user" (set USER=%~2) && shift && shift && goto CheckOpts 22 if "%1" EQU "-t" (set TARGET=%~2) && shift && shift && goto CheckOpts 23 if "%1" EQU "--target" (set TARGET=%~2) && shift && shift && goto CheckOpts 24 if "%1" EQU "--dry-run" (set DRYRUN=true) && shift && goto CheckOpts 25 if "%1" EQU "--skip-upload" (set NOUPLOAD=true) && shift && goto CheckOpts 26 if "%1" EQU "--skip-gpg" (set NOGPG=true) && shift && goto CheckOpts [all …]
|
| /third_party/python/Lib/distutils/ |
| D | cmd.py | 22 been processed -- hence 'finalize_options()'. The "body" of the 24 options, is the 'run()' method, which must also be implemented by every 29 # eg. "install" as the parent with sub-commands "install_lib", 45 # -- Creation/initialization methods ------------------------------- 64 # Per-command versions of the global flags, so that the user can 65 # customize Distutils' behaviour command-by-command and let some 69 # value of each flag is a touch complicated -- hence "self._dry_run" 84 # The 'help' flag is just used for command-line parsing, so 113 # setup script, by options from config file(s), or by command-line 118 # (command-line, option file, etc.) has been processed [all …]
|
| /third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
| D | transformation_add_function.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 31 // Creates a transformation to add a non live-safe function. 35 // Creates a transformation to add a live-safe function. 44 // - |message_.instruction| must correspond to a sufficiently well-formed 46 // - If |message_.is_livesafe| holds then |message_| must contain suitable 49 // - Adding the created function to the module must lead to a valid module. 64 // type of the sub-object at index |index_id|, which is required to be in- 70 // Returns id of the back-edge block, given the corresponding 72 // header block. Returns 0 if the loop has no back-edge block. 88 // - Perform a dry run of this method on a clone of a module, and use [all …]
|
| /third_party/spirv-tools/source/fuzz/ |
| D | transformation_add_function.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 31 // Creates a transformation to add a non live-safe function. 35 // Creates a transformation to add a live-safe function. 44 // - |message_.instruction| must correspond to a sufficiently well-formed 46 // - If |message_.is_livesafe| holds then |message_| must contain suitable 49 // - Adding the created function to the module must lead to a valid module. 64 // type of the sub-object at index |index_id|, which is required to be in- 70 // Returns id of the back-edge block, given the corresponding 72 // header block. Returns 0 if the loop has no back-edge block. 88 // - Perform a dry run of this method on a clone of a module, and use [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
| D | transformation_add_function.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 31 // Creates a transformation to add a non live-safe function. 35 // Creates a transformation to add a live-safe function. 44 // - |message_.instruction| must correspond to a sufficiently well-formed 46 // - If |message_.is_livesafe| holds then |message_| must contain suitable 49 // - Adding the created function to the module must lead to a valid module. 64 // type of the sub-object at index |index_id|, which is required to be in- 70 // Returns id of the back-edge block, given the corresponding 72 // header block. Returns 0 if the loop has no back-edge block. 88 // - Perform a dry run of this method on a clone of a module, and use [all …]
|
| /third_party/jerryscript/tests/unit-doc/ |
| D | CMakeLists.txt | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 project (unit-doc C) 19 set(GEN_DOCTEST "${CMAKE_SOURCE_DIR}/tools/gen-doctest.py") 23 set(COMPILE_FLAGS_DOCTEST "-Wno-unused-parameter -Wno-unused-function -Wno-unused-variable") 27 # Dry run of the doctest generator: analyze MarkDown files and get the list of 31 COMMAND ${PYTHON_EXECUTABLE} ${GEN_DOCTEST} --dry -d ${CMAKE_CURRENT_BINARY_DIR} ${DOC_FILES} 57 # Disable 02.API-REFERENCE-create-context.c on Windows, because there is no pthread on it. 59 list(REMOVE_ITEM DOCTEST_COMPILE ${CMAKE_CURRENT_BINARY_DIR}/02.API-REFERENCE-create-context.c) 62 # Disable 11.EXT-REFERENCE-AUTORELEASE.c if compiler is MSVC, because MSVC doesn't support cleanup … 64 list(REMOVE_ITEM DOCTEST_COMPILE ${CMAKE_CURRENT_BINARY_DIR}/11.EXT-REFERENCE-AUTORELEASE.c) [all …]
|
| /third_party/skia/m133/site/docs/dev/gardening/ |
| D | android.md | 1 --- 4 --- 8 - [What does a Android Gardener do?](#what_is_a_android_gardener) 9 - [Android Autorollers](#autoroller_doc) 10 - [View current and upcoming rotations](#view_current_upcoming_rotations) 11 - [How to swap rotation shifts](#how_to_swap) 15 --- 19 1. Monitor and approve the semi-autonomous 20 …[git merges](https://googleplex-android-review.git.corp.google.com/#/q/owner:31977622648%2540proje… 25 2. Stay on top of incoming Android-related bugs in both the [all …]
|
| /third_party/skia/site/docs/dev/gardening/ |
| D | android.md | 1 --- 4 --- 8 - [What does a Android Gardener do?](#what_is_a_android_gardener) 9 - [Android Autorollers](#autoroller_doc) 10 - [View current and upcoming rotations](#view_current_upcoming_rotations) 11 - [How to swap rotation shifts](#how_to_swap) 15 --- 19 1. Monitor and approve the semi-autonomous 20 …[git merges](https://googleplex-android-review.git.corp.google.com/#/q/owner:31977622648%2540proje… 25 2. Stay on top of incoming Android-related bugs in both the [all …]
|
| /third_party/protobuf/objectivec/DevTools/ |
| D | sources_pddm_expansion_test.sh | 4 --dry-run \
|
| /third_party/libabigail/bash-completion/ |
| D | fedabipkgdiff | 1 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 -*) 9 OPTS=" --dry-run 10 --debug 11 --traceback 12 --server 13 --topdir 14 --from 15 --to 16 --all-subpackages [all …]
|
| /third_party/pulseaudio/src/modules/gsettings/ |
| D | meson.build | 4 'gsettings-helper.c', 7 gsettings_helper = executable('gsettings-helper', 19 compile_schemas = find_program('glib-compile-schemas', required : false) 23 args: ['--strict', '--dry-run', meson.current_source_dir()] 28 install_dir : join_paths(datadir, 'glib-2.0', 'schemas')
|