Lines Matching full:total
394 def __init__(self, total, msg = "Operation Completed"): argument
396 self.total = total
401 def __init__(self, current, total, msg = "Operation in Progress"): argument
404 self.total = total
405 self.msg = msg + ": %s/%s" % (current, total);
486 def __init__(self, total, n, p, failures=0, interrupted=0): argument
488 OperationCompleted.__init__(self, total, "Building Succeeded")
490 OperationCompleted.__init__(self, total, "Building Failed")
509 # Total capacity of the volume.
598 def __init__(self, total): argument
600 self.total = total
604 def __init__(self, cached, parsed, skipped, masked, virtuals, errors, total): argument
605 OperationCompleted.__init__(self, total, "Recipe parsing Completed")
616 def __init__(self, current, total): argument
617 OperationProgress.__init__(self, current, total, "Recipe parsing")
622 def __init__(self, total): argument
624 self.total = total
628 def __init__(self, current, total): argument
629 OperationProgress.__init__(self, current, total, "Loading cache")
633 def __init__(self, total, num_entries): argument
634 OperationCompleted.__init__(self, total, "Loading cache Completed")
644 def __init__(self, current, total): argument
645 OperationProgress.__init__(self, current, total, "Preparing tree data")
649 def __init__(self, total): argument
650 OperationCompleted.__init__(self, total, "Preparing tree data Completed")
785 def __init__(self, processname, total): argument
788 self.total = total