HomeSort by relevance Sort by last modified time
    Searched defs:FileIO (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/python/lib/io/
file_io.py 37 class FileIO(object):
38 """FileIO class that exposes methods to read / write to / from files.
230 """Closes FileIO. Should be called for the WritableFile to be flushed."""
292 f = FileIO(filename, mode="rb")
294 f = FileIO(filename, mode="r")
308 with FileIO(filename, mode="w") as f:
  /external/python/cpython3/Lib/test/
test_fileio.py 24 self.f = self.FileIO(TESTFN, 'w')
81 with self.FileIO(TESTFN, 'r') as f:
91 with self.FileIO(TESTFN, 'r') as f:
97 with self.FileIO(TESTFN, 'r') as f:
107 with self.FileIO(TESTFN, 'r') as f:
113 with self.FileIO(TESTFN, 'r') as f:
119 with self.FileIO(TESTFN, 'r') as f:
128 self.f = self.FileIO(TESTFN, 'rb')
136 self.f = self.FileIO(TESTFN, 'rb')
148 self.f = self.FileIO(TESTFN, 'r'
    [all...]
  /external/python/cpython3/Lib/
_pyio.py 204 raw = FileIO(file,
617 from _io import FileIO
618 RawIOBase.register(FileIO)
    [all...]

Completed in 1307 milliseconds