Home
last modified time | relevance | path

Searched refs:_tempfile (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/lite/python/
Dconvert.py26 import tempfile as _tempfile namespace
166 with _tempfile.NamedTemporaryFile(delete=False) as fp_toco, \
167 _tempfile.NamedTemporaryFile(delete=False) as fp_model, \
168 _tempfile.NamedTemporaryFile(delete=False) as fp_input:
180 with _tempfile.NamedTemporaryFile(delete=False) as fp:
/external/chromium-trace/catapult/common/py_utils/py_utils/
Dshell_util.py10 import tempfile as _tempfile namespace
26 temp_dir = _tempfile.mkdtemp()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
Dshell.py34 import tempfile as _tempfile namespace
95 mkstemp = _tempfile.mkstemp
124 def mkstemp(suffix="", prefix=_tempfile.gettempprefix(), dir=None,
129 dir = _tempfile.gettempdir()
136 j = _tempfile._counter.get_next() # pylint: disable = E1101, W0212
Dext.py33 import tempfile as _tempfile namespace
181 self._tempdir = tempdir = _tempfile.mkdtemp()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
Dshell.py34 import tempfile as _tempfile namespace
95 mkstemp = _tempfile.mkstemp
124 def mkstemp(suffix="", prefix=_tempfile.gettempprefix(), dir=None,
129 dir = _tempfile.gettempdir()
136 j = _tempfile._counter.get_next() # pylint: disable = E1101, W0212
Dext.py33 import tempfile as _tempfile namespace
181 self._tempdir = tempdir = _tempfile.mkdtemp()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
Dext.py34 import tempfile as _tempfile namespace
180 self._tempdir = tempdir = _tempfile.mkdtemp()
Dshell.py33 import tempfile as _tempfile namespace
93 mkstemp = _tempfile.mkstemp
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
Dext.py34 import tempfile as _tempfile namespace
180 self._tempdir = tempdir = _tempfile.mkdtemp()
Dshell.py33 import tempfile as _tempfile namespace
93 mkstemp = _tempfile.mkstemp
/external/grpc-grpc/tools/run_tests/python_utils/
Djobset.py264 self._tempfile = tempfile.TemporaryFile()
280 stdout=self._tempfile,
303 stdout = read_from_start(self._tempfile)
/external/python/cpython3/Doc/library/
Dtempfile.rst260 .. _tempfile-examples: