Searched refs:csv_file (Results 1 – 8 of 8) sorted by relevance
/external/autotest/contrib/ |
D | manage_powerunit_info.py | 73 def add_from_csv(afe, csv_file): argument 81 with open(csv_file) as f: 94 def dump_to_csv(afe, csv_file): argument 101 logging.info('Back up host attribues to %s', csv_file) 102 with open(csv_file, 'w') as f: 154 if not options.csv_file: 157 file_exists = os.path.exists(options.csv_file) 159 logging.error('%s is not a valid file.', options.csv_file) 162 logging.error('%s already exists.', options.csv_file) 177 dump_to_csv(afe, options.csv_file) [all …]
|
D | generate_rpm_mapping.py | 435 def output_csv(rpm_mapping, csv_file): argument 443 with open(csv_file, 'w') as f: 470 output_csv(rpm_mapping, options.csv_file)
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/datasets/ |
D | base.py | 51 with gfile.Open(filename) as csv_file: 52 data_file = csv.reader(csv_file) 71 with gfile.Open(filename) as csv_file: 72 data_file = csv.reader(csv_file) 89 with gfile.Open(filename) as csv_file: 90 reader = csv.reader(csv_file)
|
/external/toolchain-utils/automation/server/ |
D | machine_manager.py | 22 csv_file = csv.reader(open(filename, 'rb'), delimiter=',', quotechar='"') 23 csv_file.next() 26 for hostname, label, cpu, cores, os, user in csv_file])
|
/external/tensorflow/tensorflow/contrib/receptive_field/python/util/examples/ |
D | rf_benchmark.py | 485 csv_file = open(cmd_args.csv_path, 'w') 491 rf_writer = csv.DictWriter(csv_file, fieldnames=field_names) 508 csv_file.close()
|
/external/grpc-grpc/test/core/memory_usage/ |
D | client.cc | 313 const char* csv_file = "memory_usage.csv"; in main() local 314 FILE* csv = fopen(csv_file, "w"); in main() 335 gpr_log(GPR_INFO, "Summary written to %s", csv_file); in main()
|
/external/tensorflow/tensorflow/contrib/timeseries/examples/ |
D | known_anomaly.py | 138 with open(csv_file_name, "r") as csv_file: 139 csv_reader = csv.DictReader(csv_file)
|
/external/tensorflow/tensorflow/python/keras/ |
D | callbacks.py | 1568 self.csv_file = io.open(self.filename, 1601 self.csv_file, 1610 self.csv_file.flush() 1613 self.csv_file.close()
|