Searched refs:NamedTemporaryFile (Results 1 – 25 of 274) sorted by relevance
1234567891011
/external/tensorflow/tensorflow/lite/schema/ |
D | upgrade_schema_test.py | 266 with tempfile.NamedTemporaryFile(suffix=".json", mode="w+") as in_json: 279 with tempfile.NamedTemporaryFile(suffix=".json", mode="w+") as in_json, \ 280 tempfile.NamedTemporaryFile( 282 tempfile.NamedTemporaryFile( 284 tempfile.NamedTemporaryFile(
|
/external/python/pyfakefs/pyfakefs/pytest_tests/ |
D | pytest_plugin_test.py | 14 fake_temp_file = tempfile.NamedTemporaryFile() 20 real_temp_file = tempfile.NamedTemporaryFile() 29 fake_temp_file = tempfile.NamedTemporaryFile() 35 real_temp_file = tempfile.NamedTemporaryFile()
|
/external/tensorflow/tensorflow/lite/toco/python/ |
D | toco_from_protos_test.py | 60 with tempfile.NamedTemporaryFile() as fp_toco, \ 61 tempfile.NamedTemporaryFile() as fp_model, \ 62 tempfile.NamedTemporaryFile() as fp_input, \ 63 tempfile.NamedTemporaryFile() as fp_output:
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | lock_unittest.py | 54 tf = tempfile.NamedTemporaryFile(delete=False) 81 tf = tempfile.NamedTemporaryFile(delete=False) 110 tf = tempfile.NamedTemporaryFile(delete=False) 127 tf = tempfile.NamedTemporaryFile(delete=False) 145 tf = tempfile.NamedTemporaryFile(delete=False)
|
D | tempfile_ext.py | 34 def NamedTemporaryFile(mode='w+b', suffix='', prefix='tmp'): function 43 yield tempfile.NamedTemporaryFile(
|
/external/python/cpython2/Lib/test/ |
D | make_ssl_certs.py | 95 with tempfile.NamedTemporaryFile(delete=False) as f: 106 with tempfile.NamedTemporaryFile(delete=False) as f: 144 with tempfile.NamedTemporaryFile("w") as t: 147 with tempfile.NamedTemporaryFile() as f:
|
/external/libchrome/build/android/gyp/util/ |
D | md5_check_test.py | 27 input_file1 = tempfile.NamedTemporaryFile(suffix='.txt') 28 input_file2 = tempfile.NamedTemporaryFile(suffix='.zip') 36 record_path = tempfile.NamedTemporaryFile(suffix='.stamp') 43 output_file1 = tempfile.NamedTemporaryFile()
|
/external/autotest/client/cros/image_comparison/ |
D | pdiff_image_comparer.py | 39 tmp_golden_img_file = tempfile.NamedTemporaryFile(suffix=ext) 40 tmp_test_img_file = tempfile.NamedTemporaryFile(suffix=ext) 66 tmp_diff_file = tempfile.NamedTemporaryFile(suffix='.png', delete=False)
|
/external/tensorflow/tensorflow/lite/testing/ |
D | toco_convert.py | 109 with tempfile.NamedTemporaryFile() as graphdef_file: 177 with tempfile.NamedTemporaryFile() as graphdef_file, \ 178 tempfile.NamedTemporaryFile() as output_file, \ 179 tempfile.NamedTemporaryFile("w+") as stdout_file:
|
/external/python/cpython3/Lib/test/ |
D | make_ssl_certs.py | 115 with tempfile.NamedTemporaryFile(delete=False) as f: 127 with tempfile.NamedTemporaryFile(delete=False) as f: 172 with tempfile.NamedTemporaryFile("w") as t: 175 with tempfile.NamedTemporaryFile() as f:
|
/external/python/pyfakefs/pyfakefs/tests/ |
D | fake_filesystem_unittest_test.py | 376 fake_temp_file = tempfile.NamedTemporaryFile() 382 real_temp_file = tempfile.NamedTemporaryFile() 390 fake_temp_file = tempfile.NamedTemporaryFile() 399 real_temp_file = tempfile.NamedTemporaryFile() 411 fake_temp_file = tempfile.NamedTemporaryFile() 417 real_temp_file = tempfile.NamedTemporaryFile() 424 fake_temp_file = tempfile.NamedTemporaryFile() 430 real_temp_file = tempfile.NamedTemporaryFile() 444 fake_temp_file = tempfile.NamedTemporaryFile() 450 real_temp_file = tempfile.NamedTemporaryFile() [all …]
|
D | fake_tempfile_test.py | 34 obj = tempfile.NamedTemporaryFile() 40 obj = tempfile.NamedTemporaryFile(delete=False) 46 obj = tempfile.NamedTemporaryFile(mode='w', delete=False)
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | device_denylist_test.py | 15 with tempfile.NamedTemporaryFile() as denylist_file: 24 with tempfile.NamedTemporaryFile(delete=False) as denylist_file:
|
/external/autotest/client/site_tests/audio_CRASFormatConversion/ |
D | audio_CRASFormatConversion.py | 96 reduced_file = tempfile.NamedTemporaryFile() 118 noise_profile = tempfile.NamedTemporaryFile() 130 record_file = tempfile.NamedTemporaryFile()
|
/external/fonttools/Tests/svgLib/path/ |
D | path_test.py | 6 from tempfile import NamedTemporaryFile 41 with NamedTemporaryFile(delete=False) as tmp:
|
/external/fonttools/Tests/misc/ |
D | xmlReader_test.py | 119 with tempfile.NamedTemporaryFile(delete=False) as tmp: 131 with tempfile.NamedTemporaryFile(delete=False) as tmp: 150 with tempfile.NamedTemporaryFile(delete=False) as tmp: 162 with tempfile.NamedTemporaryFile(delete=False) as tmp2:
|
D | macRes_test.py | 57 with tempfile.NamedTemporaryFile(delete=False) as tmp: 70 tmp = tempfile.NamedTemporaryFile(delete=False)
|
/external/puffin/scripts/ |
D | test_corpus.py | 74 with tempfile.NamedTemporaryFile() as tgt_file: 95 with tempfile.NamedTemporaryFile() as patch, \ 96 tempfile.NamedTemporaryFile() as new_tgt:
|
D | measure_patch_size.py | 73 with tempfile.NamedTemporaryFile() as puffdiff_patch, \ 74 tempfile.NamedTemporaryFile() as bsdiff_patch:
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | io_ops_test.py | 39 with tempfile.NamedTemporaryFile( 52 with tempfile.NamedTemporaryFile( 90 tempfile.NamedTemporaryFile(
|
/external/python/cpython3/Doc/includes/ |
D | email-read-alternative.py | 57 with tempfile.NamedTemporaryFile(suffix=extension, delete=False) as f: 64 with tempfile.NamedTemporaryFile(mode='w', delete=False) as f:
|
/external/autotest/client/cros/ |
D | tpm_store.py | 51 pem_file = tempfile.NamedTemporaryFile() 54 der_file = tempfile.NamedTemporaryFile()
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | script_common_test.py | 75 with tempfile.NamedTemporaryFile() as f: 81 with tempfile.NamedTemporaryFile() as f:
|
/external/tensorflow/tensorflow/lite/python/ |
D | convert.py | 240 with _tempfile.NamedTemporaryFile(delete=False) as fp_toco, \ 241 _tempfile.NamedTemporaryFile(delete=False) as fp_model, \ 242 _tempfile.NamedTemporaryFile(delete=False) as fp_input, \ 243 _tempfile.NamedTemporaryFile(delete=False) as fp_debug: 267 with _tempfile.NamedTemporaryFile(delete=False) as fp:
|
/external/autotest/client/cros/chameleon/ |
D | audio_widget.py | 264 with tempfile.NamedTemporaryFile( 266 with tempfile.NamedTemporaryFile( 462 with tempfile.NamedTemporaryFile(prefix='recorded_') as f: 579 with tempfile.NamedTemporaryFile(prefix='audio_') as f: 772 with tempfile.NamedTemporaryFile(prefix='recorded_') as f:
|
1234567891011