Searched refs:yaml_file (Results 1 – 6 of 6) sorted by relevance
122 with open(output_merged, 'w') as yaml_file:123 yaml_file.write(yaml.dump(json_dict))
35 def get_minidump_modules(self, yaml_file, exe = None): argument36 minidump_path = self.getBuildArtifact(os.path.basename(yaml_file) + ".dmp")37 self.yaml2obj(yaml_file, minidump_path)
25 def process_from_yaml(self, yaml_file): argument26 minidump_path = self.getBuildArtifact(os.path.basename(yaml_file) + ".dmp")27 self.yaml2obj(yaml_file, minidump_path)
228 yaml_file = { variable251 print(yaml.dump(yaml_file, default_flow_style=False, Dumper=CustomDumper))
65 def _manifests_from_yaml_file(yaml_file): argument66 with open(yaml_file) as f: