Search

Search

Help

Page 85 of 107. Showing 1,065 results (0.01 seconds)

  1. qb_init()0

    This function is called for every thread once before executing the algorithm. This is to allow developers to do pre-initialization such as opening a database.…
    Qube 6.4Oct 12, 2012
  2. qb_approve_modify($oldjob, $newjob)

    Given the 2 jobs, the $oldjob contains the current job information, The new job contains the job after its modification is applied. The function must return 1 if the change is accepted and 0 if the change is to be rejected.…
    Qube 6.4Oct 12, 2012
  3. qb_approve_submit($job)

    This function is allowed the chance to review the submitted job before insertion into the queue. This allows the developer to enforce things such as accounting information validity or restricting users to specific clusters. The function must return 1 if t…
    Qube 6.4Oct 12, 2012
  4. qb_calc_status($subjob, $agenda)

    Although the default policy calculation for the job overall status is already defined, for some facilities, this behavior may need to be overridden. By taking the $subjob and $agenda status information, the function is allowed to calculate what the job ov…
    Qube 6.4Oct 12, 2012
  5. qb_sudo_admin($user, $job)

    If a user is marked as a "sudo" admin, they are given permission to jobs based upon the value return of this function. This creates the most flexible security policy possible since the Qube! administrator is allowed to create control over jobs based upon…
    Qube 6.4Oct 12, 2012
  6. General Widget Hierarchy

    App worddav76d679c00b2103434ac0dabf5812f851.png main frame worddav76d679c00b2103434ac0dabf5812f851.png toolbar worddav76d679c00b2103434ac0dabf5812f851.png menu worddav76d679c00b2103434ac0dabf5812f851.png statusbar worddav76d679c00b2103434ac0dabf5812f851.p…
    Qube 6.4Oct 12, 2012
  7. Modifying Main Menu and Toolbars

    Edit the qube.py source file. Search through the file for the menus or toolbars and use those existing entries as a template for customization.…
    Qube 6.4Oct 12, 2012
  8. Modifying Right-Click Menus

    Go to the desired List widget (ie. JobList.py). Search for the right-click menu. Use the existing items as a template (add a menu item and then attach a callback).…
    Qube 6.4Oct 12, 2012
  9. Developing a new panel

    new JobStdout class and put in some test text (if using wx.TextCtrl widget) or derive from another wx base class. Hook up the if … _name_ at the bottom. Test out your class…
    Qube 6.4Oct 12, 2012
  10. Developing a new Job Type submission interface

    Create a submit_*.py script Use as reference the existing submit_*.py scripts, like submit_cmdline.py. Update the qube.py script (to add a submit menu item): Search the code for use of "maya," as an example. Add along with the other imports: import submit…
    Qube 6.4Oct 22, 2012