Home
last modified time | relevance | path

Searched refs:tempdir_name (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/pigweed/pw_software_update/py/
H A Dupdate_bundle_test.py29 with tempfile.TemporaryDirectory() as tempdir_name:
30 temp_root = Path(tempdir_name)
49 with tempfile.TemporaryDirectory() as tempdir_name:
50 temp_root = Path(tempdir_name)
74 with tempfile.TemporaryDirectory() as tempdir_name:
75 temp_root = Path(tempdir_name)
95 with tempfile.TemporaryDirectory() as tempdir_name:
96 temp_root = Path(tempdir_name)
115 with tempfile.TemporaryDirectory() as tempdir_name:
116 temp_root = Path(tempdir_name)
[all …]
H A Dverify_test.py33 with tempfile.TemporaryDirectory() as tempdir_name:
34 targets_root = Path(tempdir_name)
H A Dkeys_test.py29 with tempfile.TemporaryDirectory() as tempdir_name:
30 temp_root = Path(tempdir_name)
/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_httpservers.py330 self.tempdir_name = os.path.basename(self.tempdir)
331 self.base_url = '/' + self.tempdir_name
375 with open(os.path.join(self.tempdir_name, 'index.html'), 'w') as fp:
405 response = self.request(self.tempdir_name + '/test')
407 response = self.request(self.tempdir_name + '/test/')
409 response = self.request(self.tempdir_name + '/')
411 response = self.request(self.tempdir_name)
413 response = self.request(self.tempdir_name + '/?hi=2')
415 response = self.request(self.tempdir_name + '?hi=1')
418 self.tempdir_name + "/?hi=1")
/aosp_15_r20/external/pytorch/c10/test/util/
H A Dtempfile_test.cpp40 std::string tempdir_name = tempdir->name; in TEST() local
43 ASSERT_TRUE(directory_exists(tempdir_name.c_str())); in TEST()
47 ASSERT_FALSE(directory_exists(tempdir_name.c_str())); in TEST()
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/gpu/llvm_gpu_backend/
H A Dgpu_backend_lib.cc673 std::string tempdir_name = tempdir_vector.front(); in EmitModuleToHsaco() local
674 VLOG(1) << "Compile-time artifacts located at: " << tempdir_name; in EmitModuleToHsaco()
685 std::string ir_path = tensorflow::io::JoinPath(tempdir_name, ir_filename); in EmitModuleToHsaco()
690 tensorflow::io::JoinPath(tempdir_name, ir_opt_filename); in EmitModuleToHsaco()
695 tensorflow::io::JoinPath(tempdir_name, isabin_filename); in EmitModuleToHsaco()
700 tensorflow::io::JoinPath(tempdir_name, hsaco_filename); in EmitModuleToHsaco()
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_httpservers.py364 self.tempdir_name = os.path.basename(self.tempdir)
365 self.base_url = '/' + self.tempdir_name
526 with open(os.path.join(self.tempdir_name, 'index.html'), 'wb') as f:
607 response = self.request(self.tempdir_name + '/test')
609 response = self.request(self.tempdir_name + '/test/')
611 response = self.request(self.tempdir_name + '/')
613 response = self.request(self.tempdir_name)
615 response = self.request(self.tempdir_name + '/?hi=2')
617 response = self.request(self.tempdir_name + '?hi=1')
620 self.tempdir_name + "/?hi=1")