Inheritance diagram for IPython.parallel.apps.winhpcjob:
Job and task components for writing .xml files that the Windows HPC Server 2008 can use to start jobs.
Authors:
Bases: IPython.parallel.apps.winhpcjob.WinHPCJob
Create a configurable given a config config.
Parameters : | config : Config
|
---|
Notes
Subclasses of Configurable must call the __init__() method of Configurable before doing anything else and using super():
class MyConfigurable(Configurable):
def __init__(self, config=None):
super(MyConfigurable, self).__init__(config)
# Then any other code you need to finish initialization.
This ensures that instances will be configured properly.
Add a task to the job.
Parameters : | task : WinHPCTask
|
---|
A boolean (True, False) trait.
A boolean (True, False) trait.
Get the config class config section
Get the help string for this class in ReST format.
If inst is given, it’s current trait values will be used in place of class defaults.
Get the help string for a single trait.
If inst is given, it’s current trait values will be used in place of the class default.
Get the help string for a single trait and print it.
Get a list of all the names of this classes traits.
This method is just like the trait_names() method, but is unbound.
Get a list of all the traits of this class.
This method is just like the traits() method, but is unbound.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait whose value must be an instance of a specified class.
The value can also be an instance of a subclass of the specified class.
A boolean (True, False) trait.
A trait for unicode strings.
A trait for unicode strings.
A trait for unicode strings.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
Setup a handler to be called when a trait changes.
This is used to setup dynamic notifications of trait changes.
Static handlers can be created by creating methods on a HasTraits subclass with the naming convention ‘_[traitname]_changed’. Thus, to create static handler for the trait ‘a’, create the method _a_changed(self, name, old, new) (fewer arguments can be used, see below).
Parameters : | handler : callable
name : list, str, None
remove : bool
|
---|
An enum that whose value must be in a given sequence.
A trait for unicode strings.
A trait for unicode strings.
A boolean (True, False) trait.
An instance of a Python list.
Return the string representation of the job description XML.
Get metadata values for trait by key.
Get a list of all the names of this classes traits.
Get a list of all the traits of this class.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait for unicode strings.
Fire the traits events when the config is updated.
A trait for unicode strings.
A trait for unicode strings.
Write the XML job description to a file.
A trait for unicode strings.
Bases: IPython.parallel.apps.winhpcjob.WinHPCTask
Get the config class config section
Get the help string for this class in ReST format.
If inst is given, it’s current trait values will be used in place of class defaults.
Get the help string for a single trait.
If inst is given, it’s current trait values will be used in place of the class default.
Get the help string for a single trait and print it.
Get a list of all the names of this classes traits.
This method is just like the trait_names() method, but is unbound.
Get a list of all the traits of this class.
This method is just like the traits() method, but is unbound.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait whose value must be an instance of a specified class.
The value can also be an instance of a subclass of the specified class.
An instance of a Python list.
An instance of a Python list.
A trait whose value must be an instance of a specified class.
The value can also be an instance of a subclass of the specified class.
A boolean (True, False) trait.
A boolean (True, False) trait.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
Setup a handler to be called when a trait changes.
This is used to setup dynamic notifications of trait changes.
Static handlers can be created by creating methods on a HasTraits subclass with the naming convention ‘_[traitname]_changed’. Thus, to create static handler for the trait ‘a’, create the method _a_changed(self, name, old, new) (fewer arguments can be used, see below).
Parameters : | handler : callable
name : list, str, None
remove : bool
|
---|
A trait for unicode strings.
A trait for unicode strings.
A trait for unicode strings.
A trait for unicode strings.
Get metadata values for trait by key.
Get a list of all the names of this classes traits.
Get a list of all the traits of this class.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait for unicode strings.
Fire the traits events when the config is updated.
A trait for unicode strings.
A trait for unicode strings.
Bases: IPython.parallel.apps.winhpcjob.WinHPCJob
Create a configurable given a config config.
Parameters : | config : Config
|
---|
Notes
Subclasses of Configurable must call the __init__() method of Configurable before doing anything else and using super():
class MyConfigurable(Configurable):
def __init__(self, config=None):
super(MyConfigurable, self).__init__(config)
# Then any other code you need to finish initialization.
This ensures that instances will be configured properly.
Add a task to the job.
Parameters : | task : WinHPCTask
|
---|
A boolean (True, False) trait.
A boolean (True, False) trait.
Get the config class config section
Get the help string for this class in ReST format.
If inst is given, it’s current trait values will be used in place of class defaults.
Get the help string for a single trait.
If inst is given, it’s current trait values will be used in place of the class default.
Get the help string for a single trait and print it.
Get a list of all the names of this classes traits.
This method is just like the trait_names() method, but is unbound.
Get a list of all the traits of this class.
This method is just like the traits() method, but is unbound.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait whose value must be an instance of a specified class.
The value can also be an instance of a subclass of the specified class.
A boolean (True, False) trait.
A trait for unicode strings.
A trait for unicode strings.
A trait for unicode strings.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
Setup a handler to be called when a trait changes.
This is used to setup dynamic notifications of trait changes.
Static handlers can be created by creating methods on a HasTraits subclass with the naming convention ‘_[traitname]_changed’. Thus, to create static handler for the trait ‘a’, create the method _a_changed(self, name, old, new) (fewer arguments can be used, see below).
Parameters : | handler : callable
name : list, str, None
remove : bool
|
---|
An enum that whose value must be in a given sequence.
A trait for unicode strings.
A trait for unicode strings.
A boolean (True, False) trait.
An instance of a Python list.
Return the string representation of the job description XML.
Get metadata values for trait by key.
Get a list of all the names of this classes traits.
Get a list of all the traits of this class.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait for unicode strings.
Fire the traits events when the config is updated.
A trait for unicode strings.
A trait for unicode strings.
Write the XML job description to a file.
A trait for unicode strings.
Bases: IPython.parallel.apps.winhpcjob.WinHPCTask
Get the config class config section
Get the help string for this class in ReST format.
If inst is given, it’s current trait values will be used in place of class defaults.
Get the help string for a single trait.
If inst is given, it’s current trait values will be used in place of the class default.
Get the help string for a single trait and print it.
Get a list of all the names of this classes traits.
This method is just like the trait_names() method, but is unbound.
Get a list of all the traits of this class.
This method is just like the traits() method, but is unbound.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait whose value must be an instance of a specified class.
The value can also be an instance of a subclass of the specified class.
An instance of a Python list.
An instance of a Python list.
A trait whose value must be an instance of a specified class.
The value can also be an instance of a subclass of the specified class.
A boolean (True, False) trait.
A boolean (True, False) trait.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
Setup a handler to be called when a trait changes.
This is used to setup dynamic notifications of trait changes.
Static handlers can be created by creating methods on a HasTraits subclass with the naming convention ‘_[traitname]_changed’. Thus, to create static handler for the trait ‘a’, create the method _a_changed(self, name, old, new) (fewer arguments can be used, see below).
Parameters : | handler : callable
name : list, str, None
remove : bool
|
---|
A trait for unicode strings.
A trait for unicode strings.
A trait for unicode strings.
A trait for unicode strings.
Get metadata values for trait by key.
Get a list of all the names of this classes traits.
Get a list of all the traits of this class.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait for unicode strings.
Fire the traits events when the config is updated.
A trait for unicode strings.
A trait for unicode strings.
Bases: IPython.config.configurable.Configurable
Create a configurable given a config config.
Parameters : | config : Config
|
---|
Notes
Subclasses of Configurable must call the __init__() method of Configurable before doing anything else and using super():
class MyConfigurable(Configurable):
def __init__(self, config=None):
super(MyConfigurable, self).__init__(config)
# Then any other code you need to finish initialization.
This ensures that instances will be configured properly.
Add a task to the job.
Parameters : | task : WinHPCTask
|
---|
A boolean (True, False) trait.
A boolean (True, False) trait.
Get the config class config section
Get the help string for this class in ReST format.
If inst is given, it’s current trait values will be used in place of class defaults.
Get the help string for a single trait.
If inst is given, it’s current trait values will be used in place of the class default.
Get the help string for a single trait and print it.
Get a list of all the names of this classes traits.
This method is just like the trait_names() method, but is unbound.
Get a list of all the traits of this class.
This method is just like the traits() method, but is unbound.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait whose value must be an instance of a specified class.
The value can also be an instance of a subclass of the specified class.
A boolean (True, False) trait.
A trait for unicode strings.
A trait for unicode strings.
A trait for unicode strings.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
Setup a handler to be called when a trait changes.
This is used to setup dynamic notifications of trait changes.
Static handlers can be created by creating methods on a HasTraits subclass with the naming convention ‘_[traitname]_changed’. Thus, to create static handler for the trait ‘a’, create the method _a_changed(self, name, old, new) (fewer arguments can be used, see below).
Parameters : | handler : callable
name : list, str, None
remove : bool
|
---|
An enum that whose value must be in a given sequence.
A trait for unicode strings.
A trait for unicode strings.
A boolean (True, False) trait.
An instance of a Python list.
Return the string representation of the job description XML.
Get metadata values for trait by key.
Get a list of all the names of this classes traits.
Get a list of all the traits of this class.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait for unicode strings.
Fire the traits events when the config is updated.
A trait for unicode strings.
A trait for unicode strings.
Write the XML job description to a file.
A trait for unicode strings.
Bases: IPython.config.configurable.Configurable
Create a configurable given a config config.
Parameters : | config : Config
|
---|
Notes
Subclasses of Configurable must call the __init__() method of Configurable before doing anything else and using super():
class MyConfigurable(Configurable):
def __init__(self, config=None):
super(MyConfigurable, self).__init__(config)
# Then any other code you need to finish initialization.
This ensures that instances will be configured properly.
Get the config class config section
Get the help string for this class in ReST format.
If inst is given, it’s current trait values will be used in place of class defaults.
Get the help string for a single trait.
If inst is given, it’s current trait values will be used in place of the class default.
Get the help string for a single trait and print it.
Get a list of all the names of this classes traits.
This method is just like the trait_names() method, but is unbound.
Get a list of all the traits of this class.
This method is just like the traits() method, but is unbound.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait for unicode strings.
A trait whose value must be an instance of a specified class.
The value can also be an instance of a subclass of the specified class.
A trait whose value must be an instance of a specified class.
The value can also be an instance of a subclass of the specified class.
A boolean (True, False) trait.
A boolean (True, False) trait.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
An integer trait.
Longs that are unnecessary (<= sys.maxint) are cast to ints.
Setup a handler to be called when a trait changes.
This is used to setup dynamic notifications of trait changes.
Static handlers can be created by creating methods on a HasTraits subclass with the naming convention ‘_[traitname]_changed’. Thus, to create static handler for the trait ‘a’, create the method _a_changed(self, name, old, new) (fewer arguments can be used, see below).
Parameters : | handler : callable
name : list, str, None
remove : bool
|
---|
A trait for unicode strings.
A trait for unicode strings.
A trait for unicode strings.
A trait for unicode strings.
Get metadata values for trait by key.
Get a list of all the names of this classes traits.
Get a list of all the traits of this class.
The TraitTypes returned don’t know anything about the values that the various HasTrait’s instances are holding.
This follows the same algorithm as traits does and does not allow for any simple way of specifying merely that a metadata name exists, but has any value. This is because get_metadata returns None if a metadata key doesn’t exist.
A trait for unicode strings.
Fire the traits events when the config is updated.
A trait for unicode strings.
A trait for unicode strings.