Search

Search

Help

Page 4 of 5. Showing 48 results (0.014 seconds)

  1. test_submit.py

    def main(buildAgendaJob): import sys # optionally point to a test supervisor #qb.setsupervisor('YourTestSupervisor') job = { 'package':{'dev…
    Qube 6.4 / … / HelloworldNov 08, 2012
  2. Creating a new SimpleCmd

    that returns an array of SimpleCmd instances. For testing purposes, add an if __name__ == '__main__': so the submission dialog can be launched directly by running Python _script.py. Here…
    Qube 6.4Apr 15, 2013
  3. How to submit a job to only empty workers, regardless of slot count

    example: job = { 'prototype': 'cmdline', 'name': 'testing the job kind', 'package': {'cmdline': 'sleep 30'}, 'reservations': 'host.processors=1+', 'requirements…
    Qube 6.4Feb 26, 2013
  4. How do I set up Maya to do path translation?

    directory is the FROM and the second is the TO mapping: dirmap -m "" "" For example: dirmap -en 1; dirmap -m "R:Project" "/uniserver/project" To test if you have it set up…
    Qube 6.4Nov 05, 2012
  5. submit-agenda-timeout-job.py

    ') to process it. job = {} job['name'] = 'agenda timeout job submitted from python' job['cpus'] = 1 job['prototype'] = 'cmdrange' # our test job will run a "sleep…
    Qube 6.4 / … / PythonNov 08, 2012
  6. Basic dependencies

    # for the first # Set up the basic job properties as we've done before. We're going to do # a "sleep" job, so we'll limit this test to osx or linux job = {} job…
    Qube 6.4May 24, 2013
  7. Render errors that say "file not found." when using UNC paths.

    to troubleshoot problems with drive mapping initially submit test jobs that try to reference the directories in question, so that you can verify the jobs are able to access the server…
    Qube 6.4Nov 05, 2012
  8. How to fix the MySQL error message: Access denied for user 'qube_readonly'@'localhost'

    localhost, which is another way to refer to the local machine the supervisor is on in my test configuration. the one for the user qube_readonly at host %, which is the "wildcard…
    Qube 6.4Dec 19, 2012
  9. jobSubmit07.py

    will unblock at: %s' % startDatetime.strftime('%Y-%m-%d %X') def main(): job = {} job['name'] = 'python test job' job['cpus'] = 1 job['prototype'] = 'cmdline…
    Qube 6.4 / … / PythonNov 08, 2012
  10. jobsubmit.py

    ' sys.exit(1) # Build the command command = ' '.join(args) # Build the job job = {} job['name'] = 'python test job' job['cpus'] = options.subjobs…
    Qube 6.4 / … / PyframeNov 08, 2012