Changes between Version 2 and Version 3 of TorqueUsage/Functions/Avail


Ignore:
Timestamp:
09/13/06 14:22:52 (18 years ago)
Author:
bas
Comment:

added pbs.avail()

Legend:

Unmodified
Added
Removed
Modified
  • TorqueUsage/Functions/Avail

    v2 v3  
    2626      never::
    2727        The specification could never be satified
     28
     29== Example ==
     30
     31{{{
     32#python
     33#!/usr/bin/env python
     34
     35c = pbs.pbs_connect(pbs.pbs_default())
     36
     37answer = pbs.avail(c, "nodes=1")
     38print answer
     39}}}