OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:destination_path
(Results
1 - 7
of
7
) sorted by null
/external/autotest/scheduler/
drone_utility.py
392
def copy_file_or_directory(self, source_path,
destination_path
):
399
if self._same_file(source_path,
destination_path
):
401
self._ensure_directory_exists(os.path.dirname(
destination_path
))
405
assert os.path.isdir(
destination_path
)
409
os.path.join(
destination_path
, filename))
411
shutil.copytree(source_path,
destination_path
, symlinks=True)
415
os.symlink(link_to,
destination_path
)
417
shutil.copy(source_path,
destination_path
)
420
def _same_file(self, source_path,
destination_path
):
426
if not os.path.exists(
destination_path
)
[
all
...]
drones.py
197
def send_file_to(self, drone, source_path,
destination_path
,
201
destination_path
)
204
destination_path
, can_fail)
227
def send_file_to(self, drone, source_path,
destination_path
,
231
destination_path
)
234
destination_path
)
237
destination_path
, can_fail)
site_drone_manager.py
23
destination_path
=None):
25
Copy results from the given process at source_path to
destination_path
49
source_path,
destination_path
)
drone_manager.py
851
def _copy_results_helper(self, process, source_path,
destination_path
,
[
all
...]
drone_manager_unittest.py
43
def send_file_to(self, drone, source_path,
destination_path
,
46
(drone, source_path,
destination_path
))
64
def was_file_sent(self, drone, source_path,
destination_path
):
67
destination_path
))
prejob_task.py
80
source,
destination_path
=destination)
agent_task.py
683
destination_path
=self.queue_entry.execution_path() + '/')
Completed in 630 milliseconds