Home | History | Annotate | Download | only in scheduler

Lines Matching full:drone

82     @returns: Drone instance
98 @returns: Drone instance
102 drone = manager.pick_drone_to_use()
104 drone = manager.get_drone_for_pidfile(pidfile_id)
129 drone.spawn(_ENV, args, output_file=output_file)
130 return drone
144 @returns: Drone instance
148 drone = manager.pick_drone_to_use()
150 drone = manager.get_drone_for_pidfile(pidfile_id)
172 drone.spawn(_ENV, args, output_file=output_file)
173 return drone
202 """Simplified drone API."""
223 """Return a drone to use from a pidfile.
230 """Return a drone to use.
232 Various options can be passed to optimize drone selection.
234 @param num_processes: number of processes the drone is intended
238 drone is not guaranteed to support it.
247 """Return absolute path for drone results.
255 """Wrap an old style drone."""
262 raise TypeError('Drone has an unknown host type')
294 class Drone(object):
295 """Simplified drone API."""
298 """Return the hostname of the drone."""
317 class LocalDrone(Drone):
318 """Local implementation of Drone."""
327 class RemoteDrone(Drone):
328 """Remote implementation of Drone through SSH."""