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

  /external/tensorflow/tensorflow/contrib/checkpoint/python/
python_state.py 142 string_file = BytesIO()
144 numpy.save(string_file, self.array, allow_pickle=False)
145 serialized = string_file.getvalue()
147 string_file.close()
152 string_file = BytesIO(string_value)
154 self.array = numpy.load(string_file, allow_pickle=False)
156 string_file.close()
  /external/tensorflow/tensorflow/python/training/tracking/
python_state_test.py 119 string_file = io.BytesIO()
121 numpy.save(string_file, self.array, allow_pickle=False)
122 serialized = string_file.getvalue()
124 string_file.close()
129 string_file = io.BytesIO(string_value)
131 self.array = numpy.load(string_file, allow_pickle=False)
133 string_file.close()
  /external/autotest/client/site_tests/platform_DebugDaemonGetPerfData/
platform_DebugDaemonGetPerfData.py 53 string_file = cStringIO.StringIO()
54 gzip_file = gzip.GzipFile(fileobj=string_file, mode='wb')
57 return string_file.getvalue()

Completed in 1004 milliseconds