Lines Matching full:dependencies
58 Exception raised for failures in dependencies.
79 failed dependencies.
87 failed dependencies.
108 argument is used to introduce the various failed dependencies.
112 @param deps A string introducing the dependencies that
141 Both repair and verify operations have the notion of dependencies
151 def __init__(self, tag, record_type, dependencies): argument
152 self._dependency_list = dependencies
200 list. If any verifier in the transitive closure of dependencies
231 Verify that all of this node's dependencies pass for a host.
241 'The following dependencies failed')
286 `Verifier` objects are organized in a DAG identifying dependencies
291 that all dependencies run and pass before invoking the `verify()`
297 cached result in the current node, and in all dependencies.
316 * `_dependency_list`: The list of dependencies.
322 def __init__(self, tag, dependencies): argument
323 super(Verifier, self).__init__(tag, 'verify', dependencies)
331 transitive closure of all dependencies.
343 check dependencies, and if they pass, run `verify()`. Log
344 informational messages regarding failed dependencies. If we
423 repair action's dependencies fail, the action does not check its
449 def __init__(self, tag, dependencies, triggers, host_class): argument
450 super(RepairAction, self).__init__(tag, 'repair', dependencies)
495 'dep' during verify dependencies
512 # We'll catch all failure tags here for a dependencies error
536 Repair is triggered when all dependencies are successful, and at
638 dependencies in an instance of `RepairStrategy`.
660 Each repair action will invoke its dependencies and triggers as
682 In the input data for the constructor, dependencies must appear
740 Create a `Verifier` using `constructor` and `tag`. Dependencies
749 @param dep_tags Tags of dependencies for the constructor, to
761 verify nodes and the dependencies that relate them, as detailed
765 actions and their dependencies and triggers, as detailed above.
769 dependencies.
772 their dependencies and triggers.
787 # verifier will execute its dependencies in the order provided
791 dependencies = set()
794 dependencies.update(deps)
797 root_tags = [t for t in all_tags if t not in dependencies]