| /third_party/openssl/util/ |
| D | process_docs.pl | 2 # Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved. 41 'dry-run|n', # Only output file names on STDOUT 62 print STDERR "DEBUG: --sourcedir = $options{sourcedir}\n" 64 print STDERR "DEBUG: --destdir = $options{destdir}\n" 66 print STDERR "DEBUG: --type = $options{type}\n" 68 print STDERR "DEBUG: --suffix = $options{suffix}\n" 71 print STDERR "DEBUG: --section = $_\n"; 73 print STDERR "DEBUG: --remove = $options{remove}\n" 75 print STDERR "DEBUG: --debug = $options{debug}\n" 77 print STDERR "DEBUG: --dry-run = $options{\"dry-run\"}\n" [all …]
|
| /third_party/node/deps/npm/man/man1/ |
| D | npm-prune.1 | 1 .TH "NPM\-PRUNE" "1" "April 2022" "" "" 3 \fBnpm-prune\fR \- Remove extraneous packages 8 npm prune [[<@scope>/]<pkg>\.\.\.] [\-\-production] [\-\-dry\-run] [\-\-json] 20 If the \fB\-\-production\fP flag is specified or the \fBNODE_ENV\fP environment 22 specified in your \fBdevDependencies\fP\|\. Setting \fB\-\-no\-production\fP will 25 If the \fB\-\-dry\-run\fP flag is used then no changes will actually be made\. 27 If the \fB\-\-json\fP flag is used then the changes \fBnpm prune\fP made (or would 28 have made with \fB\-\-dry\-run\fP) are printed as a JSON object\. 30 In normal operation with package\-locks enabled, extraneous modules are 32 this command with the \fB\-\-production\fP flag\. [all …]
|
| D | npm-publish.1 | 1 .TH "NPM\-PUBLISH" "1" "April 2022" "" "" 3 \fBnpm-publish\fR \- Publish a package 8 npm publish [<tarball>|<folder>] [\-\-tag <tag>] [\-\-access <public|restricted>] [\-\-otp otpcode]… 11 Sets tag 'latest' if no \-\-tag specified 33 \fB[\-\-tag <tag>]\fP 36 and \fBnpm install\fP installs the \fBlatest\fP tag\. See \fBnpm\-dist\-tag\fP \fInpm\-dist\-tag\fR… 39 \fB[\-\-access <public|restricted>]\fP 42 If you don't have a paid account, you must publish with \fB\-\-access public\fP 45 \fB[\-\-otp <otpcode>]\fP 46 If you have two\-factor authentication enabled in \fBauth\-and\-writes\fP mode [all …]
|
| D | npm-audit.1 | 1 .TH "NPM\-AUDIT" "1" "April 2022" "" "" 3 \fBnpm-audit\fR \- Run a security audit 8 npm audit [\-\-json|\-\-parseable|\-\-audit\-level=(low|moderate|high|critical)] 9 npm audit fix [\-\-force|\-\-package\-lock\-only|\-\-dry\-run] 11 common options: [\-\-production] [\-\-only=(dev|prod)] 30 $ npm audit fix \-\-package\-lock\-only 38 $ npm audit fix \-\-only=prod 42 Have \fBaudit fix\fP install semver\-major updates to toplevel dependencies, not just 43 semver\-compatible ones: 47 $ npm audit fix \-\-force [all …]
|
| D | npm-pack.1 | 1 .TH "NPM\-PACK" "1" "April 2022" "" "" 3 \fBnpm-pack\fR \- Create a tarball from a package 8 npm pack [[<@scope>/]<pkg>\.\.\.] [\-\-dry\-run] 16 current working directory as \fB<name>\-<version>\.tgz\fP, and then write 24 The \fB\-\-dry\-run\fP argument will do everything that pack usually does without
|
| /third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/ |
| D | format_test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 35 await runner.run(<String>['format', srcFile.path]); 41 testUsingContext('dry-run', () async { 52 await runner.run(<String>['format', '--dry-run', srcFile.path]); 58 testUsingContext('dry-run with set-exit-if-changed', () async { 70 expect(runner.run(<String>[ 71 'format', '--dry-run', '--set-exit-if-changed', srcFile.path, 78 testUsingContext('line-length', () async { 94 await runner.run(<String>['format', '--line-length', '$lineLengthLong', srcFile.path]); 98 await runner.run(<String>['format', '--line-length', '$lineLengthShort', srcFile.path]);
|
| /third_party/node/deps/npm/docs/content/cli-commands/ |
| D | npm-prune.md | 1 --- 2 section: cli-commands 3 title: npm-prune 5 --- 7 # npm-prune(1) 13 npm prune [[<@scope>/]<pkg>...] [--production] [--dry-run] [--json] 25 If the `--production` flag is specified or the `NODE_ENV` environment 27 specified in your `devDependencies`. Setting `--no-production` will 30 If the `--dry-run` flag is used then no changes will actually be made. 32 If the `--json` flag is used then the changes `npm prune` made (or would [all …]
|
| D | npm-audit.md | 1 --- 2 section: cli-commands 3 title: npm-audit 4 description: Run a security audit 5 --- 7 # npm-audit(1) 9 ## Run a security audit 14 npm audit [--json|--parseable|--audit-level=(low|moderate|high|critical)] 15 npm audit fix [--force|--package-lock-only|--dry-run] 17 common options: [--production] [--only=(dev|prod)] [all …]
|
| D | npm-publish.md | 1 --- 2 section: cli-commands 3 title: npm-publish 5 --- 7 # npm-publish(1) 13 npm publish [<tarball>|<folder>] [--tag <tag>] [--access <public|restricted>] [--otp otpcode] [--dr… 16 Sets tag 'latest' if no --tag specified 25 [`developers`](/using-npm/developers) for full details on what's included in the published package,… 28 …lt registry or using a [`scope`](/using-npm/npm-scope) in the name (see [`package.json`](/configur… 37 * `[--tag <tag>]` [all …]
|
| D | npm-pack.md | 1 --- 2 section: cli-commands 3 title: npm-pack 5 --- 7 # npm-pack(1) 14 npm pack [[<@scope>/]<pkg>...] [--dry-run] 22 current working directory as `<name>-<version>.tgz`, and then write 30 The `--dry-run` argument will do everything that pack usually does without 35 * [npm cache](/cli-commands/npm-cache) 36 * [npm publish](/cli-commands/npm-publish) [all …]
|
| /third_party/flutter/engine/flutter/ci/ |
| D | check_gn_format.py | 4 # Use of this source code is governed by a BSD-style license that can be 27 parser.add_argument('--gn-binary', dest='gn_binary', required=True, type=str) 28 parser.add_argument('--dry-run', dest='dry_run', required=True, type=bool) 29 parser.add_argument('--root-directory', dest='root_directory', required=True, type=str) 39 gn_command.append('--dry-run') 46 print "Or, run ./ci/check_gn_format.py with '--dry-run false'" 47 return -1
|
| /third_party/nghttp2/.github/workflows/ |
| D | fuzz.yml | 5 runs-on: ubuntu-latest 7 - name: Build Fuzzers 8 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master 10 oss-fuzz-project-name: 'nghttp2' 11 dry-run: false 12 - name: Run Fuzzers 13 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master 15 oss-fuzz-project-name: 'nghttp2' 16 fuzz-seconds: 600 17 dry-run: false [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/ |
| D | format.dart | 2 // Use of this source code is governed by a BSD-style license that can be 14 argParser.addFlag('dry-run', 20 argParser.addFlag('set-exit-if-changed', 27 help: 'Produce machine-readable JSON output.', 31 argParser.addOption('line-length', 71 if (argResults['dry-run']) '-n', 72 if (argResults['machine']) '-m', 73 if (argResults['line-length'] != null) '-l ${argResults['line-length']}', 74 if (!argResults['dry-run'] && !argResults['machine']) '-w', 75 if (argResults['set-exit-if-changed']) '--set-exit-if-changed',
|
| /third_party/curl/.github/workflows/ |
| D | fuzz.yml | 8 - master 9 - '*/ci' 12 - master 16 runs-on: ubuntu-latest 18 - name: Build Fuzzers 19 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master 21 oss-fuzz-project-name: 'curl' 22 dry-run: false 24 - name: Run Fuzzers 25 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master [all …]
|
| /third_party/node/deps/npm/test/tap/ |
| D | publish.js | 5 const common = require('../common-tap') 7 const mr = BB.promisify(require('npm-registry-mock')) 17 name: 'publish-organized', 44 .put('/publish-organized', true) 49 '--no-color', 50 '--cache', common.cache, 51 '--registry=' + common.registry.replace(common.port, server.port), 52 `--//localhost:${server.port}/:username=username`, 53 `--//localhost:${server.port}/:_password=` + Buffer.from('password').toString('base64'), 54 `--//localhost:${server.port}/:email=` + 'ogd@aoaioxxysz.net' [all …]
|
| D | pack.js | 6 const common = require('../common-tap') 7 const fs = BB.promisifyAll(require('graceful-fs')) 22 name: 'generic-package', 30 '--loglevel', 'notice', 31 '--cache', cache, 32 '--tmp', tmp, 33 '--prefix', testDir, 34 '--no-global' 40 t.match(stderr, /notice\s+\d+[a-z]+\s+package\.json/gi, 'mentions package.json') 41 t.match(stdout, /generic-package-90000\.100001\.5\.tgz/ig, 'found pkg') [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 …]
|
| /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/flutter/skia/site/dev/contrib/ |
| D | cqkeywords.md | 5 ------ 10 To do a dry run through the CQ please use Gerrit's [CQ Dry Run](https://groups.google.com/a/chromiu… 14 The CQ will run through its list of verifiers (reviewer check, trybots, tree check, 17 No-Dependency-Checks 18 -------------------- 20 No-Dependency-Checks: true 26 ------------------ 39 CQ_INCLUDE_TRYBOTS=skia.primary:Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE 42 No-Tree-Checks 43 -------------- [all …]
|
| /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/f2fs-tools/tools/sg_write_buffer/ |
| D | sg_write_buffer.c | 2 * Copyright (c) 2006-2018 Luben Tuikov and Douglas Gilbert. 4 * Use of this source code is governed by a BSD-style 52 {"dry-run", no_argument, 0, 'd'}, 60 {"read-stdin", no_argument, 0, 'r'}, 76 "sg_write_buffer [--bpw=CS] [--dry-run] [--help] [--id=ID] " in usage() 77 "[--in=FILE]\n" in usage() 78 " [--length=LEN] [--mode=MO] " in usage() 79 "[--offset=OFF]\n" in usage() 80 " [--read-stdin] [--skip=SKIP] " in usage() 81 "[--specific=MS]\n" in usage() [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/node/deps/npm/lib/ |
| D | publish.js | 6 const figgyPudding = require('figgy-pudding') 11 const npa = require('libnpm/parse-arg') 12 const npmConfig = require('./config/figgy-config.js') 18 const readFileAsync = BB.promisify(require('graceful-fs').readFile) 19 const readJson = BB.promisify(require('read-package-json')) 21 const statAsync = BB.promisify(require('graceful-fs').stat) 23 …blish.usage = 'npm publish [<tarball>|<folder>] [--tag <tag>] [--access <public|restricted>] [--dr… 25 '\n\nSets tag `latest` if no --tag specified' 35 dryRun: 'dry-run', 36 'dry-run': { default: false }, property
|
| /third_party/json/doc/scripts/ |
| D | git-update-ghpages | 2 set -o errexit 16 if [ -n "$GIT_NAME" ]; then _ git config user.name "$GIT_NAME"; fi 17 if [ -n "$GIT_EMAIL" ]; then _ git config user.email "$GIT_EMAIL"; fi 21 run() { function 22 if [ ! -d "$source" ]; then 27 local tmpdir="$(mktemp -d)" 32 _ git checkout -b "$branch" 35 _ git add -A . 37 git_push --force 40 _ git clone "$repo" . -b "$branch" || ( \ [all …]
|