/pkg/src/modules/actions/ |
H A D | directory.py | 136 # Mode isn't valid, so let validate raise a more 138 self.validate(fmri=pkgplan.destination_fmri) 147 # Mode isn't valid, so let validate raise a more 149 orig.validate(fmri=pkgplan.origin_fmri) 275 def validate(self, fmri=None): member in class:DirectoryAction
|
H A D | attribute.py | 145 def validate(self, fmri=None): member in class:AttributeAction
|
H A D | legacy.py | 149 # XXX this could be a better check & exactly validate pkginfo 189 def validate(self, fmri=None): member in class:LegacyAction
|
H A D | link.py | 125 def validate(self, fmri=None): member in class:LinkAction
|
H A D | group.py | 221 def validate(self, fmri=None): member in class:GroupAction
|
H A D | user.py | 205 self.validate() # should raise error if no group in action 347 def validate(self, fmri=None): member in class:UserAction
|
H A D | license.py | 259 def validate(self, fmri=None): member in class:LicenseAction
|
H A D | file.py | 137 # Mode isn't valid, so let validate raise a more 139 self.validate(fmri=pkgplan.destination_fmri) 863 def validate(self, fmri=None): member in class:FileAction
|
H A D | generic.py | 862 # Owner was missing; let validate raise a more 864 self.validate(fmri=fmri) 904 # Group was missing; let validate raise a more 906 self.validate(fmri=pkgplan.destination_fmri) 994 # nothing more to validate. 1162 def validate(self, fmri=None): member in class:Action
|
H A D | depend.py | 481 def validate(self, fmri=None): member in class:DependencyAction
|
H A D | signature.py | 92 """Store the information about the certs needed to validate 331 """Retrieve the chain certificates needed to validate this 345 """Return a list of the chain certificates needed to validate 364 """Return a list of the chain certificates needed to validate 456 # to validate this signature are present. 603 def validate(self, fmri=None): member in class:SignatureAction
|
/pkg/src/tests/api/ |
H A D | t_catalog.py | 489 # Verify that a newly created catalog will validate since no 491 c.validate() 518 # Verify that the newly saved catalog will validate. 519 c.validate() 527 # Verify that a stored catalog will validate, and that its 529 c.validate() 817 dup1.validate() 879 dup1.validate() 1201 self.assertRaises(api_errors.BadCatalogSignatures, c.validate, 1203 self.assertRaises(api_errors.BadCatalogSignatures, c.validate, [all...] |
H A D | t_action.py | 525 """Verify that action validate() works as expected; currently 535 bad_act.validate() 542 self.assertRaises(error, bad_act.validate) 726 act.validate()
|
H A D | t_manifest.py | 393 self.m2.validate(signatures=self.m2_signatures) 397 self.m2.validate, signatures=self.m2_signatures)
|
/pkg/src/ |
H A D | pull.py | 239 def get_manifest(pfmri, xport_cfg, validate=False): 256 if validate: 260 a.validate(fmri=pfmri) 822 m = get_manifest(f, xport_cfg, validate=True) 1168 m = get_manifest(f, xport_cfg, validate=True) 1440 m = get_manifest(f, xport_cfg, validate=True)
|
/pkg/src/modules/publish/ |
H A D | transaction.py | 154 action.validate(fmri=self.pkg_name) 281 action.validate()
|
H A D | dependencies.py | 658 a.validate()
|
/pkg/src/modules/lint/ |
H A D | pkglint_action.py | 567 validate() method on each action. 1447 def validate(self, action, manifest, engine, pkglint_id="009"): member in class:PkgActionChecker 1452 action.validate() 1465 validate.pkglint_desc = _("Publication checks for actions.")
|
/pkg/src/modules/ |
H A D | catalog.py | 72 # the catalog in the various <CatalogPartBase>.validate() 945 def validate(self, signatures=None, require_signatures=False): member in class:CatalogPart 953 # Nothing to validate, and we're not required to. 1103 def validate(self, signatures=None, require_signatures=False): member in class:CatalogUpdate 1111 # Nothing to validate, and we're not required to. 1317 def validate(self, signatures=None, require_signatures=False): member in class:CatalogAttrs 1325 # Nothing to validate, and we're not required to. 2317 part.validate(signatures=new_sigs[name]) 3819 def validate(self, require_signatures=False): member in class:Catalog 3824 self._attrs.validate(require_signature [all...] |
H A D | manifest.py | 1330 def validate(self, signatures): member in class:Manifest
|
/pkg/src/modules/client/ |
H A D | publisher.py | 1508 # Nothing to validate. 1979 validate = False 1996 validate = True 1998 if validate: 2001 v1_cat.validate() 2787 The 'cert' parameter is the certificate to validate. 2838 # Check whether we can validate this certificate.
|
H A D | api.py | 5174 # Before continuing, validate SSL information. 5286 validate = origins_changed(orig_pub[-1].repository, 5308 if validate: 5315 in validate:
|
H A D | client_api.py | 538 jsonschema.validate(ret_json, op_schema) 2874 jsonschema.validate({arg_name: pargs, "opts_json": opts},
|
/pkg/src/modules/server/ |
H A D | transaction.py | 262 # validate that this version can be opened 459 action.validate()
|
/pkg/src/tests/cli/ |
H A D | t_client_api.py | 212 jsonschema.validate(input, schema)
|