Home
last modified time | relevance | path

Searched +full:script +full:- +full:output (Results 1 – 25 of 1207) sorted by relevance

12345678910>>...49

/external/python/google-api-python-client/docs/dyn/
Ddisplayvideo_v1.customBiddingAlgorithms.scripts.html8 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/icu/icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/
DScriptRunModuleWriter.java5 * Copyright (C) 1998-2010, International Business Machines Corporation and *
30 output.println(preamble); in writeScriptRuns()
33 int script = scriptData.getRecord(record).scriptCode(); in writeScriptRuns() local
35 output.print(" {0x"); in writeScriptRuns()
36 output.print(Utility.hex(scriptData.getRecord(record).startChar(), 6)); in writeScriptRuns()
37 output.print(", 0x"); in writeScriptRuns()
38 output.print(Utility.hex(scriptData.getRecord(record).endChar(), 6)); in writeScriptRuns()
39 output.print(", "); in writeScriptRuns()
40 output.print(scriptData.getTag(script)); in writeScriptRuns()
41 output.print("ScriptCode}"); in writeScriptRuns()
[all …]
DScriptIDModuleWriter.java5 * Copyright (C) 1998-2015, International Business Machines Corporation and
35 what = "script"; in writeScriptHeader()
47 for(int script=minScript;script<=previousTotalScripts;){ in writeScriptHeader()
56 output.println(format.format(args)); in writeScriptHeader()
61 output.println(format.format(args)); in writeScriptHeader()
65 output.print(" "); in writeScriptHeader()
66 output.print(scriptData.getTagLabel(script)); in writeScriptHeader()
67 output.print("ScriptCode = "); in writeScriptHeader()
69 if (script < 10) { in writeScriptHeader()
70 output.print(" "); in writeScriptHeader()
[all …]
/external/rust/android-crates-io/crates/icu_locale_core/tests/fixtures/
Dlangid.json4 "output": { object
11 "output": { object
17 "input": "en-Latn",
18 "output": { object
21 "script": "Latn" string
25 "input": "lij-Arab",
26 "output": { object
29 "script": "Arab" string
33 "input": "en-Latn-US",
34 "output": { object
[all …]
/external/webrtc/infra/specs/
Dclient.webrtc.perf.json9 "--remove",
10 "--android",
11 "--adb-path",
12 "../../third_party/android_sdk/public/platform-tools/adb",
13 "--isolated-script-test-perf-output=${ISOLATED_OUTDIR}/perftest-output.pb"
17 "--test-suite",
20 "script": "//tools_webrtc/perf/process_perf_results.py" string
35 "pool": "WebRTC-perf"
41 "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
48 "--isolated-script-test-perf-output=${ISOLATED_OUTDIR}/perftest-output.pb",
[all …]
/external/pytorch/test/jit/
Dtest_hooks.py47 # Tests for JIT forward hooks and pre-hooks
93 module_scripted = torch.jit.script(module)
121 def foo(self, input: Tuple[str]) -> Tuple[str]:
133 torch.jit.script(m)
139 def prehook(self, input: Tuple[str]) -> Tuple[str]:
144 def prehook(self, input: Tuple[str]) -> Tuple[str]:
151 "Pre-hook '.+' on .+ has at least two different python "
154 torch.jit.script(m)
158 def hook(self, input: Tuple[str], output: str):
173 torch.jit.script(m)
[all …]
/external/cronet/stable/testing/scripts/
Drun_isolated_script_test.py3 # Use of this source code is governed by a BSD-style license that can be
5 """Runs a script that can run as an isolate (or not).
7 If optional argument --isolated-script-test-output=[FILENAME] is passed
8 to the script, json is written to that file in the format detailed in
9 //docs/testing/json-test-results-format.md.
11 If optional argument --isolated-script-test-filter=[TEST_NAMES] is passed to
12 the script, it should be a double-colon-separated ("::") list of test names,
15 This script is intended to be the base command invoked by the isolate,
16 followed by a subsequent Python script. It could be generalized to
28 # Some harnesses understand the --isolated-script-test arguments
[all …]
Drun_chromedriver_tests.py3 # Use of this source code is governed by a BSD-style license that can be
7 This script attempts to emulate the contract of gtest-style tests
10 If optional argument --isolated-script-test-output=[FILENAME] is passed
11 to the script, json is written to that file in the format detailed in
12 //docs/testing/json-test-results-format.md.
14 If optional argument --isolated-script-test-filter=[TEST_NAMES] is passed to
15 the script, it should be a double-colon-separated ("::") list of test names,
27 def generate_test_output_args(self, output): argument
28 return ['--isolated-script-test-output', output]
31 if any('--retry-limit' in arg for arg in self.rest_args):
[all …]
Dcommon.py2 # Use of this source code is governed by a BSD-style license that can be
32 # results of non-isolated script tests.
39 # Some build-time scripts import this file and run into issues with
41 # during build-time. So silently swallow the error in that case.
60 # pylint: disable=useless-object-inheritance
73 logging.error('Command output: %s', e.output)
82 ['icacls', acl_dir, '/grant', '*S-1-15-2-2:(OI)(CI)(RX)'],
87 logging.error('Command output: %s', e.output)
100 # D:AI(A;OICI;0x1200a9;;;S-1-15-2-2)(A;OICIID;FA;;;BA)
102 # D:AI(A;ID;0x1200a9;;;S-1-15-2-2)(A;ID;FA;;;BA)(A;ID;0x1301bf;;;BU)
[all …]
Drun_flatbuffers_unittests.py3 # Use of this source code is governed by a BSD-style license that can be
5 """Runs a python script under an isolate
7 This script attempts to emulate the contract of gtest-style tests
10 If optional argument --isolated-script-test-output=[FILENAME] is passed
11 to the script, json is written to that file in the format detailed in
12 //docs/testing/json-test-results-format.md.
14 This script is intended to be the base command invoked by the isolate,
15 followed by a subsequent Python script."""
29 # pylint: disable=super-with-arguments
34 parser.add_argument('--isolated-script-test-output', type=str)
[all …]
/external/cronet/tot/testing/scripts/
Drun_isolated_script_test.py3 # Use of this source code is governed by a BSD-style license that can be
5 """Runs a script that can run as an isolate (or not).
7 If optional argument --isolated-script-test-output=[FILENAME] is passed
8 to the script, json is written to that file in the format detailed in
9 //docs/testing/json-test-results-format.md.
11 If optional argument --isolated-script-test-filter=[TEST_NAMES] is passed to
12 the script, it should be a double-colon-separated ("::") list of test names,
15 This script is intended to be the base command invoked by the isolate,
16 followed by a subsequent Python script. It could be generalized to
28 # Some harnesses understand the --isolated-script-test arguments
[all …]
Drun_chromedriver_tests.py3 # Use of this source code is governed by a BSD-style license that can be
7 This script attempts to emulate the contract of gtest-style tests
10 If optional argument --isolated-script-test-output=[FILENAME] is passed
11 to the script, json is written to that file in the format detailed in
12 //docs/testing/json-test-results-format.md.
14 If optional argument --isolated-script-test-filter=[TEST_NAMES] is passed to
15 the script, it should be a double-colon-separated ("::") list of test names,
27 def generate_test_output_args(self, output): argument
28 return ['--isolated-script-test-output', output]
31 if any('--retry-limit' in arg for arg in self.rest_args):
[all …]
Dcommon.py2 # Use of this source code is governed by a BSD-style license that can be
32 # results of non-isolated script tests.
39 # Some build-time scripts import this file and run into issues with
41 # during build-time. So silently swallow the error in that case.
60 # pylint: disable=useless-object-inheritance
73 logging.error('Command output: %s', e.output)
82 ['icacls', acl_dir, '/grant', '*S-1-15-2-2:(OI)(CI)(RX)'],
87 logging.error('Command output: %s', e.output)
100 # D:AI(A;OICI;0x1200a9;;;S-1-15-2-2)(A;OICIID;FA;;;BA)
102 # D:AI(A;ID;0x1200a9;;;S-1-15-2-2)(A;ID;FA;;;BA)(A;ID;0x1301bf;;;BU)
[all …]
Drun_flatbuffers_unittests.py3 # Use of this source code is governed by a BSD-style license that can be
5 """Runs a python script under an isolate
7 This script attempts to emulate the contract of gtest-style tests
10 If optional argument --isolated-script-test-output=[FILENAME] is passed
11 to the script, json is written to that file in the format detailed in
12 //docs/testing/json-test-results-format.md.
14 This script is intended to be the base command invoked by the isolate,
15 followed by a subsequent Python script."""
29 # pylint: disable=super-with-arguments
34 parser.add_argument('--isolated-script-test-output', type=str)
[all …]
Drun_cast_core_tests.py3 # Use of this source code is governed by a BSD-style license that can be
7 If optional argument --isolated-script-test-output=[FILENAME] is passed
8 to the script, json is written to that file in the format detailed in
9 //docs/testing/json-test-results-format.md.
11 If optional argument --isolated-script-test-filter=[TEST_NAMES] is passed to
12 the script, it should be a double-colon-separated ("::") list of test names,
15 This script is intended to be the base command invoked by the isolate,
16 followed by a subsequent Python script. It could be generalized to
28 def generate_test_output_args(self, output): argument
29 return ['--write-full-results-to', output]
[all …]
/external/llvm/utils/
Dtest_debuginfo.pl3 # This script tests debugging information generated by a compiler.
5 # - Input source program. Usually this source file is decorated using
7 # - Executable file. This file is generated by the compiler.
9 # This perl script extracts debugger commands from input source program
10 # comments in a script. A debugger is used to load the executable file
11 # and run the script generated from source program comments. Finally,
12 # the debugger output is checked, using FileCheck, to validate
15 # On Darwin the default is to use the llgdb.py wrapper script which
28 my $debugger_script_file = "$output_dir/$input_filename.debugger.script";
29 my $output_file = "$output_dir/$input_filename.gdb.output";
[all …]
/external/cronet/stable/testing/merge_scripts/code_coverage/
Dmerge_results.py3 # Use of this source code is governed by a BSD-style license that can be
5 """Merge results from code-coverage/pgo swarming runs.
7 This script merges code-coverage/pgo profiles from multiple shards. It also
25 """Parameters passed to this merge script, as per:
29 parser.add_argument('--build-properties',
32 parser.add_argument('--summary-json', help=argparse.SUPPRESS)
33 parser.add_argument('--task-output-dir', help=argparse.SUPPRESS)
34 parser.add_argument('-o',
35 '--output-json',
40 # Custom arguments for this merge script.
[all …]
/external/cronet/tot/testing/merge_scripts/code_coverage/
Dmerge_results.py3 # Use of this source code is governed by a BSD-style license that can be
5 """Merge results from code-coverage/pgo swarming runs.
7 This script merges code-coverage/pgo profiles from multiple shards. It also
25 """Parameters passed to this merge script, as per:
29 parser.add_argument('--build-properties',
32 parser.add_argument('--summary-json', help=argparse.SUPPRESS)
33 parser.add_argument('--task-output-dir', help=argparse.SUPPRESS)
34 parser.add_argument('-o',
35 '--output-json',
40 # Custom arguments for this merge script.
[all …]
/external/pytorch/benchmarks/fastrnns/
Dfactory.py10 # list[list[T]] -> list[T]
20 (options) -> (inputs, params, forward, backward_setup, backward)
29 backward: Given `output = backward_setup(*forward(*inputs))`, performs
46 def simple_backward_setup(output, seed=None): argument
47 assert isinstance(output, torch.Tensor)
50 grad_output = torch.randn_like(output)
51 return output, grad_output
54 def simple_backward(output, grad_output, **kwargs): argument
55 return output.backward(grad_output, **kwargs)
69 def lstm_creator(script=True, **kwargs): argument
[all …]
/external/iproute2/testsuite/lib/
Dgeneric.sh31 SCRIPT=$1; shift
36 if [ -s $STD_ERR ]; then
37 ts_err "${SCRIPT}: ${DESC} failed:"
39 ts_err "stderr output:"
41 if [ -s $STD_OUT ]; then
42 ts_err "stdout output:"
45 elif [ -s $STD_OUT ]; then
46 echo "${SCRIPT}: ${DESC} succeeded with output:"
49 echo "${SCRIPT}: ${DESC} succeeded"
55 SCRIPT=$1; shift
[all …]
/external/llvm/utils/lit/lit/
DTestRunner.py68 # Avoid re-entering the lock by finding out if kill needs to be run
197 # output. This is null until we have seen some output using
205 # env FOO=1 llc < %s | env BAR=2 llvm-mc | FileCheck %s
219 # from a file are represented with a list [file, mode, file-object]
220 # where file-object is initially None.
292 if stderr == subprocess.PIPE and j != cmd.commands[-1]:
327 timeoutHelper.addProcess(procs[-1])
333 procs[-1].stdin.close()
334 procs[-1].stdin = None
338 input = procs[-1].stdout
[all …]
/external/pigweed/pw_build/
Dpython_action.gni7 # https://www.apache.org/licenses/LICENSE-2.0
19 # Defines an action that runs a Python script.
21 # This wraps a regular Python script GN action with an invocation of a script-
22 # runner script that adds useful features. pw_python_action() uses the same
25 # module May be used in place of the script argument to run the
26 # provided Python module with `python -m` instead of a script.
27 # Either script or module must be provided.
29 # capture_output If true, script output is hidden unless the script fails
32 # stamp File to touch if the script is successful. Actions that
33 # don't create output files can use this stamp file instead of
[all …]
/external/autotest/server/cros/
Dtelemetry_runner.py3 # Use of this source code is governed by a BSD-style license that can be
32 CHART_JSON_RESULT = 'results-chart.json'
69 self.output = '\n'.join([stdout, stderr])
77 be executed in the Lab environment - for this usecase, either the drone OR
102 output to the caller.
113 It decides browser=[system|cros-chrome]
115 browser=lacros-chrome. It is only valid for remote
138 def _get_telemetry_cmd(self, script, test_or_benchmark, output_format, argument
140 """Build command to execute telemetry based on script and benchmark.
142 @param script: Telemetry script we want to run. For example:
[all …]
/external/angle/build/rust/
Drun_build_script.py4 # Use of this source code is governed by a BSD-style license that can be
7 # This is a wrapper script which runs a Cargo build.rs build script
8 # executable in a Cargo-like environment. Build scripts can do arbitrary
11 # Code review processes must be applied to ensure that the build script
15 # https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-carg…
16 # * Output from rustc commands, e.g. to figure out the Rust version.
18 # Similarly, the only allowable output from such a build script
22 # * cargo:rustc-cfg output.
24 # That's it. We don't even support the other standard cargo:rustc-
25 # output messages.
[all …]
/external/angle/scripts/
Drun_code_generation.py4 # Use of this source code is governed by a BSD-style license that can be
8 # Runs ANGLE format table and other script code generation scripts.
25 def get_child_script_dirname(script): argument
26 # All script names are relative to ANGLE's root
27 return os.path.dirname(os.path.abspath(os.path.join(root_dir, script)))
30 def get_executable_name(script): argument
31 with open(script, 'r') as f:
41 def paths_from_auto_script(script, param): argument
42 script_dir = get_child_script_dirname(script)
46 res = subprocess.check_output([exe, os.path.basename(script), param],
[all …]

12345678910>>...49