Searched refs:facets (Results 1 - 11 of 11) sorted by relevance
/pkg/src/modules/ |
H A D | _varcet.c | 38 PyObject *facets = NULL; local 54 static char *kwlist[] = {"facets", "action", "publisher", NULL}; 57 kwlist, &facets, &action, &publisher)) 63 if ((keylist = PyObject_GetAttrString(facets, 70 if ((res = PyObject_GetAttrString(facets, "_Facets__res")) == NULL) { 86 PyObject *facet = PyDict_GetItem(facets, attr); 103 facets, key); 142 * facets need to be checked; this action is not 158 * facets are yet True, tentatively reject this 166 * All facets mus [all...] |
H A D | manifest.py | 435 """Generate set action supplemental data containing all facets 456 # List of possible facets and under what variant combinations 458 facets = defaultdict(set) 485 facets[varkey].add(name) 521 cfacets = facets.pop((), set()) 524 # facets since they are common to all variants. 525 for varkey, fnames in list(facets.items()): 528 # No facets unique to this combo; 530 del facets[varkey] 534 # of facets fo [all...] |
/pkg/src/modules/client/ |
H A D | imageconfig.py | 288 self.facets = facet.Facets() 427 # Variants and facets are encoded so they can contain 434 self.facets[str(unquote(k))] = v 437 self.facets._set_inherited(str(unquote(k)), v) 580 # save local facets 581 for f in self.facets.local: 583 quote(f, ""), self.facets.local[f]) 589 # save inherited facets 590 for f in self.facets.inherited: 592 quote(f, ""), self.facets 1508 facets = property(__get_facets, __set_facets) variable in class:BlendedConfig [all...] |
H A D | image.py | 1024 def create(self, pubs, facets=EmptyDict, is_zone=False, progtrack=None, 1046 'facets' is an optional dictionary of facet names and values. 1071 # additional variants or facets specified. 1073 self.cfg.facets.update(facets) 1891 self.cfg.facets = new_facets 2002 set to False, then the variants and facets currently set in the 2006 # Normally elide other arch variants, facets 2012 self.cfg.facets.allow_action] 2170 # system. Some packages may have only had facets o [all...] |
H A D | api.py | 857 which facets should be returned based on how they were set: 860 Return all facets set in the image and all 861 facets listed in installed packages. 864 Return only the facets set in the image. 867 Return only the facets listed in installed 870 'implicit' is a boolean indicating whether facets specified in 878 facets = self._img.cfg.facets 880 # Include all facets set in image. 881 fimg = set(facets [all...] |
H A D | imageplan.py | 310 """Merge any new facets settings with (possibly changing) 311 inherited facets.""" 315 # supplied facets. 318 # we don't allow callers to specify inherited facets 322 # get the existing image facets. 323 old_facets = self.image.cfg.facets 327 # still need to see if inherited facets are changing. 329 # inherited facets removed. 333 # get the latest inherited facets and merge them into the user 334 # specified facets [all...] |
/pkg/src/tests/api/ |
H A D | t_api.py | 251 facets = facet.Facets({ "facet.devel": True }) 252 for pd in api_obj.gen_plan_change_varcets(facets=facets):
|
/pkg/src/modules/client/linkedimage/ |
H A D | common.py | 766 """Load linked image inherited facets from disk. 886 # load inherited facets. if inherited facet data is missing 1021 # compare in-memory and on-disk inherited facets 2585 kwargs["facets"] = None 2588 assert "facets" in api_kwargs 2590 kwargs["facets"] = api_kwargs["facets"] 2850 # save the planned parent facets 3147 accept, facets, noexecute, refresh_catalogs, reject_list, 3158 assert not (variants and facets) [all...] |
/pkg/src/ |
H A D | client.py | 633 display_plan_options = ["basic", "fmris", "variants/facets", "services", 648 "variants/facets", "boot-archive", 767 if "variants/facets" in disp and varcets: 772 logger.info(_("Changed variants/facets:")) 1087 "change-facets": sorted(facets_changed), 2036 """Attempt to change the facets as specified, updating 2044 usage(_("{0}: no facets specified").format(op)) 2046 facets = {} 2057 usage(_("{0}: facets must to be of the form " 2066 usage(_("{0}: facets mus [all...] |
/pkg/src/modules/lint/ |
H A D | engine.py | 882 facets=pkg.facet.Facets(), force=False,
|
/pkg/src/tests/cli/ |
H A D | t_pkgsign.py | 1914 """Test that actions tagged with facets don't break signing.""" 1926 self._api_change_varcets(api_obj, facets=nfacets,
|
Completed in 77 milliseconds