Skip to content

Instantly share code, notes, and snippets.

@killerswan
Created October 17, 2014 02:42
Show Gist options
  • Save killerswan/62e1b2807ff60b30f213 to your computer and use it in GitHub Desktop.
Save killerswan/62e1b2807ff60b30f213 to your computer and use it in GitHub Desktop.
msi_only is safe to remove, I think...
C:\code\vSentry\tests\scripts\job_scheduling\HCKwww>grep -iHrn msi_only *
batchscheduler.py:133: def copy_files(self, wait=False, msi_only=False):
batchscheduler.py:149: if msi_only:
batchscheduler.py:156: def install(self, wait=False, msi_only=False):
batchscheduler.py:161: res = self.copy_files(wait, msi_only)
batchscheduler.py:232: def try_install(self, wait=False, msi_only=False):
batchscheduler.py:234: return self.try_action(lambda: self.install(wait=wait, msi_only=msi_only), Binary file batchscheduler.pyc matches
C:\code\vSentry\tests\scripts\job_scheduling\HCKwww>grep -iHrn "copy_files(" *
batchscheduler.py:133: def copy_files(self, wait=False, msi_only=False):
batchscheduler.py:161: res = self.copy_files(wait, msi_only)
batchscheduler.py:227: def try_copy_files(self, wait=False):
batchscheduler.py:229: return self.try_action(lambda: self.copy_files(wait=wait),
Binary file batchscheduler.pyc matches
schedulers.py:191: bs.try_copy_files()
schedulers.py:258: bs.try_copy_files()
C:\code\vSentry\tests\scripts\job_scheduling\HCKwww>grep -iHrn "install(" *
batchscheduler.py:36: >>> sch.try_install()
batchscheduler.py:37: >>> sch.try_uninstall()
batchscheduler.py:108: def uninstall(self, wait=False):
batchscheduler.py:156: def install(self, wait=False, msi_only=False):
batchscheduler.py:222: def try_uninstall(self, wait=False):
batchscheduler.py:224: return self.try_action(lambda: self.uninstall(wait=wait),
batchscheduler.py:232: def try_install(self, wait=False, msi_only=False):
batchscheduler.py:234: return self.try_action(lambda: self.install(wait=wait, msi_only=msi_only), Binary file batchscheduler.pyc matches
proxy.py:52:scheduler.try_uninstall(wait = True)
proxy.py:53:scheduler.try_install(wait = True)
schedulers.py:37:def batch_try_wtq_no_install(config, pool, wtq = None, multiplier = 1):
schedulers.py:55: bs.try_install(wait = True)
schedulers.py:60: bs.try_uninstall(wait = True)
schedulers.py:69: bs.try_install(wait = True)
schedulers.py:73: bs.try_uninstall(wait = True)
schedulers.py:88: bs.try_uninstall(wait = True)
schedulers.py:89: bs.try_install(wait = True)
schedulers.py:287: sch.try_install(wait = True)
schedulers.py:291: sch.try_uninstall(wait = True)
schedulers.py:317: bs.try_install(wait=True)
schedulers.py:318: bs.try_uninstall(wait=True)
schedulers.py:326: bs.try_install(wait=True)
schedulers.py:327: bs.try_uninstall(wait=True)
schedulers.py:383: bs.try_uninstall(wait = True)
schedulers.py:384: bs.try_install(wait = False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment