Esempio n. 1
0
    def __init__(self, ssh_client):
        Job.__init__(self)
        self.ssh_client = ssh_client

        self._raw_output = []
        self._last_log = None

        self._parser = RemoteScriptOutputParser()
Esempio n. 2
0
 def __init__(self, park_time, park_name, vpr):
     Job.__init__(self)
     self.park_time = park_time
     self.park_name = park_name
     self.vpr = vpr
 def __init__(self):
     Job.__init__(self)
     self._sections = None
Esempio n. 4
0
    def __init__(self, ssh_client):
        Job.__init__(self)
        self._client = ssh_client

        self._all_arms = None
Esempio n. 5
0
 def __init__(self):
     Job.__init__(self)
     self._pool = ThreadPool(30)
Esempio n. 6
0
 def __init__(self, *jobs):
     Job.__init__(self)
     self.jobs = [j for j in jobs]
     self.args = [() for x in jobs]