Searched refs:capture_output (Results 1 – 18 of 18) sorted by relevance
/third_party/python/Lib/test/test_json/ |
D | test_tool.py | 90 process = subprocess.run(args, input=self.data, capture_output=True, text=True, check=True) 145 …process = subprocess.run(args, input=self.jsonlines_raw, capture_output=True, text=True, check=Tru… 172 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True) 180 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True) 188 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True) 196 process = subprocess.run(args, input=input_, capture_output=True, text=True, check=True)
|
/third_party/mindspore/mindspore/run_check/ |
D | _check_version.py | 85 … timeout=3, text=True, capture_output=True, check=False, shell=True) 104 capture_output=True, check=False, shell=True) 117 capture_output=True, check=False, shell=True) 170 … timeout=10, text=True, capture_output=True, check=False, shell=True) 291 … process = subprocess.run(call_cmd, timeout=3, text=True, capture_output=True, check=False)
|
/third_party/python/Lib/test/support/ |
D | testresult.py | 151 def get_test_runner(stream, verbosity, capture_output=False): argument 152 return get_test_runner_class(verbosity, capture_output)(stream)
|
D | __init__.py | 982 capture_output=(junit_xml_list is not None))
|
/third_party/flutter/flutter/packages/flutter/test/foundation/ |
D | print_test.dart | 9 import 'capture_output.dart';
|
D | assertions_test.dart | 8 import 'capture_output.dart';
|
/third_party/python/Lib/test/test_tools/ |
D | test_pathfix.py | 39 capture_output=True)
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/ |
D | radeonsi-run-tests.py | 174 capture_output="True", 203 capture_output="True",
|
/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/ |
D | lookup_dep.py | 153 list_java_targets_command, cwd=_SRC_DIR, capture_output=True, text=True, check=True)
|
/third_party/mindspore/mindspore/_extends/parallel_compile/tbe_compiler/ |
D | tbe_process.py | 117 … timeout=COMPILE_TIME_OUT_SECONDS, text=True, capture_output=True, check=True)
|
/third_party/python/Lib/test/ |
D | test_py_compile.py | 240 capture_output=True)
|
D | test_subprocess.py | 1657 capture_output=True) 1669 capture_output=True, stdout=tf) 1681 capture_output=True, stderr=tf) 1695 capture_output=True) # New session unspecified.
|
D | test_sys.py | 983 proc = subprocess.run(args, check=True, capture_output=True, text=True)
|
/third_party/python/Doc/library/ |
D | subprocess.rst | 41 capture_output=False, shell=False, cwd=None, timeout=None, \ 53 *check*, and *capture_output* are not.) 55 If *capture_output* is true, stdout and stderr will be captured. 58 not be supplied at the same time as *capture_output*. If you wish to capture 60 instead of *capture_output*. 99 >>> subprocess.run(["ls", "-l", "/dev/null"], capture_output=True) 112 Added the *capture_output* parameter.
|
/third_party/python/Lib/ |
D | subprocess.py | 461 input=None, capture_output=False, timeout=None, check=False, **kwargs): argument 494 if capture_output:
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0b1.rst | 454 New argument ``capture_output`` for subprocess.run
|
D | 3.9.0a1.rst | 3120 conflicting `input` and `stdin` or `capture_output` and `stdout` or `stderr`
|
/third_party/python/Doc/whatsnew/ |
D | 3.7.rst | 1395 The :func:`subprocess.run` function accepts the new *capture_output*
|