| |
- builtins.object
-
- ExecutableStatistics
- builtins.tuple(builtins.object)
-
- MemoryStatistics
class ExecutableStatistics(builtins.object) |
|
ExecutableStatistics(executable: str, number_of_process: int, private: int, shared: int, total: int, pss: int, pfn_size: int, missing_pfn_size: int) -> None
ExecutableStatistics(executable: str, number_of_process: int, private: int, shared: int, total: int, pss: int, pfn_size: int, missing_pfn_size: int) |
|
Methods defined here:
- __eq__(self, other)
- Return self==value.
- __init__(self, executable: str, number_of_process: int, private: int, shared: int, total: int, pss: int, pfn_size: int, missing_pfn_size: int) -> None
- Initialize self. See help(type(self)) for accurate signature.
- __repr__(self)
- Return repr(self).
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
Data and other attributes defined here:
- __annotations__ = {'executable': <class 'str'>, 'missing_pfn_size': <class 'int'>, 'number_of_process': <class 'int'>, 'pfn_size': <class 'int'>, 'private': <class 'int'>, 'pss': <class 'int'>, 'shared': <class 'int'>, 'total': <class 'int'>}
- __dataclass_fields__ = {'executable': Field(name='executable',type=<class 'str'>,defau...appingproxy({}),kw_only=False,_field_type=_FIELD), 'missing_pfn_size': Field(name='missing_pfn_size',type=<class 'int'>...appingproxy({}),kw_only=False,_field_type=_FIELD), 'number_of_process': Field(name='number_of_process',type=<class 'int'...appingproxy({}),kw_only=False,_field_type=_FIELD), 'pfn_size': Field(name='pfn_size',type=<class 'int'>,default...appingproxy({}),kw_only=False,_field_type=_FIELD), 'private': Field(name='private',type=<class 'int'>,default=...appingproxy({}),kw_only=False,_field_type=_FIELD), 'pss': Field(name='pss',type=<class 'int'>,default=<dat...appingproxy({}),kw_only=False,_field_type=_FIELD), 'shared': Field(name='shared',type=<class 'int'>,default=<...appingproxy({}),kw_only=False,_field_type=_FIELD), 'total': Field(name='total',type=<class 'int'>,default=<d...appingproxy({}),kw_only=False,_field_type=_FIELD)}
- __dataclass_params__ = _DataclassParams(init=True,repr=True,eq=True,order=False,unsafe_hash=False,frozen=False)
- __hash__ = None
- __match_args__ = ('executable', 'number_of_process', 'private', 'shared', 'total', 'pss', 'pfn_size', 'missing_pfn_size')
|
class MemoryStatistics(builtins.tuple) |
|
MemoryStatistics(pid, private, shared, rss, pss, executable, cmd)
MemoryStatistics(pid, private, shared, rss, pss, executable, cmd) |
|
- Method resolution order:
- MemoryStatistics
- builtins.tuple
- builtins.object
Methods defined here:
- __getnewargs__(self)
- Return self as a plain tuple. Used by copy and pickle.
- __repr__(self)
- Return a nicely formatted representation string
- _asdict(self)
- Return a new dict which maps field names to their values.
- _replace(self, /, **kwds)
- Return a new MemoryStatistics object replacing specified fields with new values
Class methods defined here:
- _make(iterable) from builtins.type
- Make a new MemoryStatistics object from a sequence or iterable
Static methods defined here:
- __new__(_cls, pid, private, shared, rss, pss, executable, cmd)
- Create new instance of MemoryStatistics(pid, private, shared, rss, pss, executable, cmd)
Data descriptors defined here:
- pid
- Alias for field number 0
- private
- Alias for field number 1
- shared
- Alias for field number 2
- rss
- Alias for field number 3
- pss
- Alias for field number 4
- executable
- Alias for field number 5
- cmd
- Alias for field number 6
Data and other attributes defined here:
- __match_args__ = ('pid', 'private', 'shared', 'rss', 'pss', 'executable', 'cmd')
- _field_defaults = {}
- _fields = ('pid', 'private', 'shared', 'rss', 'pss', 'executable', 'cmd')
Methods inherited from builtins.tuple:
- __add__(self, value, /)
- Return self+value.
- __contains__(self, key, /)
- Return key in self.
- __eq__(self, value, /)
- Return self==value.
- __ge__(self, value, /)
- Return self>=value.
- __getattribute__(self, name, /)
- Return getattr(self, name).
- __getitem__(self, key, /)
- Return self[key].
- __gt__(self, value, /)
- Return self>value.
- __hash__(self, /)
- Return hash(self).
- __iter__(self, /)
- Implement iter(self).
- __le__(self, value, /)
- Return self<=value.
- __len__(self, /)
- Return len(self).
- __lt__(self, value, /)
- Return self<value.
- __mul__(self, value, /)
- Return self*value.
- __ne__(self, value, /)
- Return self!=value.
- __rmul__(self, value, /)
- Return value*self.
- count(self, value, /)
- Return number of occurrences of value.
- index(self, value, start=0, stop=9223372036854775807, /)
- Return first index of value.
Raises ValueError if the value is not present.
Class methods inherited from builtins.tuple:
- __class_getitem__(...) from builtins.type
- See PEP 585
| |