| /external/crosvm/tools/chromeos/ |
| D | merge_bot | 3 # Use of this source code is governed by a BSD-style license that can be 6 # This script is used by the CI system to regularly update the merge and dry run changes. 8 # It can be run locally as well, however some permissions are only given to the bot's service 9 # account (and are enabled with --is-bot). 11 # See `./tools/chromeos/merge_bot -h` for details. 32 git_log = git("log --decorate=no --color=never") 33 curl = cmd("curl --silent --fail") 36 mkdir = cmd("mkdir -p") 44 MERGE_TAG = "testing-crosvm-merge" 45 DRY_RUN_TAG = "testing-crosvm-merge-dry-run" [all …]
|
| /external/ltp/android/tools/ |
| D | make_install_parser.py | 3 # Copyright 2016 - The Android Open Source Project 9 # http://www.apache.org/licenses/LICENSE-2.0 25 # Parses the output of make install --dry-run and generates directives in the 37 '''Parses the output of make install --dry-run.''' 43 '''Parses the text output of make install --dry-run. 46 input_text: string, output of make install --dry-run 51 pattern = re.compile(r'install\s+-m\s+\d+\s+"%s%s(.+)"\s+/opt/ltp/(.+)' % 75 description='Parse the LTP make install --dry-run output into a list') 77 '--ltp-root', 82 '--dry-run-file', [all …]
|
| D | make_parser.py | 3 # Copyright 2016 - The Android Open Source Project 9 # http://www.apache.org/licenses/LICENSE-2.0 31 '''Parses the output of make --dry-run. 45 ar_parser.add_argument('-r', dest='r', action='store_true') 46 ar_parser.add_argument('-c', dest='c', action='store') 50 as_parser.add_argument('-c', dest='compile', action='store_true') 51 as_parser.add_argument('-o', dest='target', action='store') 55 cc_parser.add_argument('-D', dest='defines', action='append') 56 cc_parser.add_argument('-I', dest='includes', action='append') 57 cc_parser.add_argument('-l', dest='libraries', action='append') [all …]
|
| /external/ktfmt/core/src/test/java/com/facebook/ktfmt/cli/ |
| D | MainTest.kt | 8 * http://www.apache.org/licenses/LICENSE-2.0 64 fun `expandArgsToFileNames - single file arg is used as is`() { in expandArgsToFileNames - single file arg is used as is() 71 fun `expandArgsToFileNames - single arg which is not a file is not returned`() { in expandArgsToFileNames - single arg which is not a file is not returned() 77 …fun `expandArgsToFileNames - single arg which is a directory is resolved to its recursively contai… in expandArgsToFileNames - single arg which is a directory is resolved to its recursively contained kt files() 88 …fun `expandArgsToFileNames - multiple directory args are resolved to their recursively contained k… in expandArgsToFileNames - multiple directory args are resolved to their recursively contained kt files() 108 fun `expandArgsToFileNames - a dash is an error`() { in expandArgsToFileNames - a dash is an error() 110 Main.expandArgsToFileNames(listOf(root.resolve("foo.bar").toString(), File("-").toString())) in expandArgsToFileNames - a dash is an error() 118 fun `Using '-' as the filename formats an InputStream`() { in Using '-' as the filename formats an InputStream() 120 Main(code.byteInputStream(), PrintStream(out), PrintStream(err), arrayOf("-")).run() in Using '-' as the filename formats an InputStream() 130 Main(code.byteInputStream(), PrintStream(out), PrintStream(err), arrayOf("-")).run() in Parsing errors are reported (stdin)() [all …]
|
| D | ParsedArgsTest.kt | 8 * http://www.apache.org/licenses/LICENSE-2.0 43 val result = ParsedArgs.parseOptions(arrayOf("--unknown")) in unknown flags return an error() 64 fun `parseOptions recognizes --dropbox-style`() { in parseOptions recognizes --dropbox-style() 65 val parsed = assertSucceeds(ParsedArgs.parseOptions(arrayOf("--dropbox-style", "foo.kt"))) in parseOptions recognizes --dropbox-style() 70 fun `parseOptions recognizes --google-style`() { in parseOptions recognizes --google-style() 71 val parsed = assertSucceeds(ParsedArgs.parseOptions(arrayOf("--google-style", "foo.kt"))) in parseOptions recognizes --google-style() 76 fun `parseOptions recognizes --dry-run`() { in parseOptions recognizes --dry-run() 77 val parsed = assertSucceeds(ParsedArgs.parseOptions(arrayOf("--dry-run", "foo.kt"))) in parseOptions recognizes --dry-run() 82 fun `parseOptions recognizes -n as --dry-run`() { in parseOptions recognizes -n as --dry-run() 83 val parsed = assertSucceeds(ParsedArgs.parseOptions(arrayOf("-n", "foo.kt"))) in parseOptions recognizes -n as --dry-run() [all …]
|
| /external/spdx-tools/rdfloader/parser2v2/ |
| D | license_utils_test.go | 1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 28 input = NS_SPDX + "LicenseRef-1" 30 expectedOutput = "LicenseRef-1" 118 // just a dummy dry run. 179 SpecialLicense{value: "LicenseRef-1"}, 186 expectedOutput = "NOASSERTION AND LicenseRef-1 AND NONE" 237 SpecialLicense{value: "LicenseRef-1"}, 244 expectedOutput = "NOASSERTION OR LicenseRef-1 OR NONE" 251 // nothing to test (just a dry run) 266 // nothing to test (just a dry run) [all …]
|
| /external/spdx-tools/rdfloader/parser2v3/ |
| D | license_utils_test.go | 1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 28 input = NS_SPDX + "LicenseRef-1" 30 expectedOutput = "LicenseRef-1" 118 // just a dummy dry run. 179 SpecialLicense{value: "LicenseRef-1"}, 186 expectedOutput = "NOASSERTION AND LicenseRef-1 AND NONE" 237 SpecialLicense{value: "LicenseRef-1"}, 244 expectedOutput = "NOASSERTION OR LicenseRef-1 OR NONE" 251 // nothing to test (just a dry run) 266 // nothing to test (just a dry run) [all …]
|
| /external/python/parse_type/tasks/ |
| D | _dry_run.py | 1 # -*- coding: UTF-8 -*- 3 Basic support to use a --dry-run mode w/ invoke tasks. 5 .. code-block:: 14 # -- DRY-RUN MODE: Only echos commands. 15 ctx.run("rm -rf {}".format(path)) 21 PREFIX = "DRY-RUN: " 35 def run(self, command, **kwargs): member in DryRunContext 44 self.run(command2, **kwargs)
|
| /external/llvm/utils/release/ |
| D | tag.sh | 2 #===-- tag.sh - Tag the LLVM release candidates ----------------------------===# 9 #===------------------------------------------------------------------------===# 13 #===------------------------------------------------------------------------===# 15 set -e 20 projects="llvm cfe test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp … 24 base_url="https://llvm.org/svn/llvm-project" 27 echo "usage: `basename $0` -release <num> [-rebranch] [-revision <num>] [-dry-run]" 28 echo "usage: `basename $0` -release <num> -rc <num> [-dry-run]" 30 echo " -release <num> The version number of the release" 31 echo " -rc <num> The release candidate number" [all …]
|
| /external/libaom/av1/encoder/ |
| D | encodetxb.h | 40 * rate-distortion optimization and entropy coding of transform coefficients. 42 * \param[in] cpi Top-level encoder structure 51 * \param[in] cpi Top-level encoder structure 66 * last non-zero coefficient plus one. 74 * \param[in] cm Top-level structure shared by encoder and 103 * \param[in] cm Top-level structure shared by encoder and 123 * \param[in] eob The scan index of last non-zero coefficient plus 138 * \param[in] cpi Top-level encoder structure 139 * \param[in] td Top-level multithreading structure 140 * \param[in] dry_run Whether this is a dry run. [all …]
|
| /external/toybox/tests/ |
| D | patch.test | 3 [ -f testing.sh ] && . testing.sh 7 testing "dry run doesn't create file" \ 8 "patch --dry-run >/dev/null && [ ! -e bork ] && echo yes" "yes\n" "" " 9 --- /dev/null 11 @@ -0,0 +1,1 @@ 16 --- /dev/null 18 @@ -0,0 +1,3 @@ 26 --- bork 28 @@ -1,3 +1,4 @@ 36 --- bork [all …]
|
| /external/google-cloud-java/java-dataflow/proto-google-cloud-dataflow-v1beta3/src/main/java/com/google/dataflow/v1beta3/ |
| D | LaunchTemplateResponse.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 74 * The job that was launched, if the request was not a dry run and 90 * The job that was launched, if the request was not a dry run and 106 * The job that was launched, if the request was not a dry run and 117 private byte memoizedIsInitialized = -1; 140 if (size != -1) return size; in getSerializedSize() 476 * The job that was launched, if the request was not a dry run and 491 * The job that was launched, if the request was not a dry run and 510 * The job that was launched, if the request was not a dry run and 533 * The job that was launched, if the request was not a dry run and [all …]
|
| D | LaunchFlexTemplateResponse.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 74 * The job that was launched, if the request was not a dry run and 90 * The job that was launched, if the request was not a dry run and 106 * The job that was launched, if the request was not a dry run and 117 private byte memoizedIsInitialized = -1; 140 if (size != -1) return size; in getSerializedSize() 477 * The job that was launched, if the request was not a dry run and 492 * The job that was launched, if the request was not a dry run and 511 * The job that was launched, if the request was not a dry run and 534 * The job that was launched, if the request was not a dry run and [all …]
|
| D | LaunchFlexTemplateResponseOrBuilder.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 30 * The job that was launched, if the request was not a dry run and 43 * The job that was launched, if the request was not a dry run and 56 * The job that was launched, if the request was not a dry run and
|
| D | LaunchTemplateResponseOrBuilder.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 30 * The job that was launched, if the request was not a dry run and 43 * The job that was launched, if the request was not a dry run and 56 * The job that was launched, if the request was not a dry run and
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | apigee_v1.organizations.environments.apis.revisions.deployments.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
| /external/google-cloud-java/java-accesscontextmanager/proto-google-identity-accesscontextmanager-v1/src/main/java/com/google/identity/accesscontextmanager/v1/ |
| D | ServicePerimeterOrBuilder.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 263 * Proposed (or dry run) ServicePerimeter configuration. This configuration 278 * Proposed (or dry run) ServicePerimeter configuration. This configuration 293 * Proposed (or dry run) ServicePerimeter configuration. This configuration 307 * Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly 311 * provide a configuration ("spec") to use in a dry-run version of the Service 316 * fields in the spec are set to non-default values.
|
| /external/aws-sdk-java-v2/scripts/ |
| D | finalize-release-changes | 13 VERSION_REGEX = re.compile('^[0-9]+\.[0-9]+\.[0-9]+$') 14 DATE_REGEX = re.compile('^[0-9]{4}-[0-9]{2}-[0-9]{2}$') 18 print("release-version is not in the correct format.") 20 print("release-date is not in the correct format.") 23 …parser = argparse.ArgumentParser(description="Finalize the unrelease changes in .changes/next-rele… 24 …parser.add_argument('--release-version', '-v', dest='release_version', required=True, help="The ve… 25 …er.add_argument('--release-date', '-d', dest='release_date', required=True, help="The date for the… 26 …parser.add_argument('--generate-changelog', '-g', dest='generate_changelog_now', action='store_tru… 27 …parser.add_argument('--dry-run', '-r', dest='dry_run', action='store_true', help="Whether it is a … 32 next_release = load_unreleased_changes('.changes/next-release') [all …]
|
| /external/brotli/.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: 'brotli' 11 dry-run: false 12 - name: Run Fuzzers 13 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master 15 oss-fuzz-project-name: 'brotli' 16 fuzz-seconds: 600 17 dry-run: false [all …]
|
| /external/capstone/.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: 'capstone' 11 dry-run: false 12 - name: Run Fuzzers 13 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master 15 oss-fuzz-project-name: 'capstone' 16 fuzz-seconds: 600 17 dry-run: false [all …]
|
| /external/gson/.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: 'gson' 12 dry-run: false 14 - name: Run Fuzzers 15 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master 17 oss-fuzz-project-name: 'gson' 18 fuzz-seconds: 600 19 dry-run: false [all …]
|
| /external/pcre/.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 …]
|
| /external/oss-fuzz/infra/cifuzz/ |
| D | example_main.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: 'example' 12 dry-run: false 13 - name: Run Fuzzers 14 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master 16 oss-fuzz-project-name: 'example' 17 fuzz-seconds: 600 18 dry-run: false [all …]
|
| /external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/ |
| D | fuzz.yml | 6 - stable 7 - develop 8 - pre-release 9 - '2.*' 11 - '*' 15 runs-on: ubuntu-latest 17 - name: Build Fuzzers 18 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master 20 oss-fuzz-project-name: 'zlib-ng' 21 dry-run: false [all …]
|
| /external/rust/crates/flate2/.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: 'flate2-rs' 12 dry-run: false 14 - name: Run Fuzzers 15 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master 17 oss-fuzz-project-name: 'flate2-rs' 18 fuzz-seconds: 180 19 dry-run: false [all …]
|