Search

Search

Help

Page 6 of 7. Showing 68 results (0.02 seconds)

  1. jobArchive01.py

    '); sys.path.append('../../api/python'); import qb def main(): job = {} job['name'] = 'python test job' job['cpus'] = 1 job['prototype'] = 'cmdline' job['requirements…
    Qube 6.4 / … / PythonNov 08, 2012
  2. jobSubmit01.py

    qb def main(): job = {} job['name'] = 'python test job' job['cpus'] = 1 job['prototype'] = 'cmdline' job['requirements'] = 'host.os=linux' package…
    Qube 6.4 / … / PythonNov 08, 2012
  3. QubeGUI Installation

    The QubeGUI is a set of python scripts that use the qb python module and wxPython. It is compiled for each platform so it can run independently and not require installation…
    Qube 6.4Oct 19, 2012
  4. SimpleCmds Location

    the qube.py script, you will find the simpleCmd directory in: $QBDIR/api/Python/qb/GUI/ where $QBDIR is the location of the Qube directory. This can also be found by going to File…
    Qube 6.4Apr 15, 2013
  5. Basic_SimpleCMD.py

    ('/Applications/pfx/qube/api/python'); else: sys.path.append('/usr/local/pfx/qube/api/python'); import qb def main(): job = {} job['name'] = 'Maya BatchRender (rib) TUTORIAL' job…
  6. Development Options

    also be run directly via python. It uses all standard python libraries and the qb python module. Since full access to the python code is available, the QubeGUI can also…
    Qube 6.4Oct 19, 2012
  7. Submitting a Job from Application

    : Install the Maya Jobtype on the client machine Launch Maya, and click load and autoload for the qb plugin Using: Under the Qube menu, select Submit Fill in any override…
    Qube 6.4Jun 17, 2013
  8. deletionCascade.py

    #!/usr/bin/env python import qb task = [] def newJob(name, status='blocked'): job = { 'prototype': 'cmdline', 'name': 'job %s' % name, 'label': 'job…
  9. How to easily kill or remove an entire job process group

    /env python import qb task = [] def newJob(name, status='blocked'): job = { 'prototype': 'cmdline', 'name': 'job %s' % name, 'label': 'job %s' % name…
    Qube 6.4Mar 29, 2013
  10. workerLock.py

    '] if not os.path.exists(qbApiDir): sys.exit(2) if qbApiDir not in sys.path: sys.path.append(qbApiDir) import qb HOSTNAME = socket.gethostname() TIME_FMT = '[%b %d, %Y %X…