Lines Matching refs:Manifest
125 class Manifest(object):
126 """A Manifest is the representation of the actions composing a specific
1423 Manifest's data payload, and 'csize' represents the compressed
1534 null = Manifest()
1536 class FactoredManifest(Manifest):
1537 """This class serves as a wrapper for the Manifest class for callers
1571 Manifest.__init__(self, fmri)
1783 return Manifest.get_directories(self, excludes)
1792 for a in Manifest.gen_actions_by_type(self, atype,
1808 for a in Manifest.gen_actions_by_type(self, atype,
1860 return Manifest.gen_facets(self, excludes=excludes,
1873 return Manifest.gen_variants(self, excludes=excludes,
1881 return Manifest.gen_mediators(self, excludes=excludes)
1903 Manifest's data payload, and 'csize' represents the compressed
1910 return Manifest.get_size(self, excludes=excludes)
1915 return Manifest.__getitem__(self, key)
1924 return Manifest.__contains__(self, key)
1935 return Manifest.get_variants(self, name)
1940 return Manifest.get_all_variants(self)
1944 return Manifest.search_dict(cache_path, excludes,
1950 return Manifest.gen_actions(self, attr_match=attr_match,
1956 return Manifest.__str__(self)
1961 return Manifest.duplicates(self, excludes=excludes)
1967 return Manifest.difference(self, origin,
1988 class EmptyFactoredManifest(Manifest):
1995 Manifest.__init__(self)