Search
Page 4 of 5. Showing 48 results (0.014 seconds)
test_submit.py
def main(buildAgendaJob): import sys # optionally point to a test supervisor #qb.setsupervisor('YourTestSupervisor') job = { 'package':{'dev…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…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…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…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…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…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…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…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…jobsubmit.py
' sys.exit(1) # Build the command command = ' '.join(args) # Build the job job = {} job['name'] = 'python test job' job['cpus'] = options.subjobs…