/pkg/src/modules/lint/ |
H A D | opensolaris.py | 37 self.description = _( 50 self.description = _(
|
H A D | base.py | 66 'description' is a short (one sentence) description of the class.""" 69 description = "No description." variable in class:Checker
|
H A D | pkglint_manifest.py | 44 self.description = _( 121 * error if pkg.description or pkg.summary are set. 129 for key in [ "pkg.description", "pkg.summary" ]: 602 """Warns when a package has an empty summary or description, 603 or a description which is identical to the summary.""" 605 desc = manifest.get("pkg.description", None) 609 action = engine.get_attr_action("pkg.description", 612 engine.warning(_("Empty pkg.description in {0}").format( 627 engine.warning(_("pkg.description matches pkg.summary " 632 "A package's description shoul [all...] |
H A D | pkglint_action.py | 63 self.description = _("Checks for duplicate IPS actions.") 981 self.description = _("Various checks on actions")
|
/pkg/src/tests/api/ |
H A D | t_imageconfig.py | 58 repo.description: Lots of development packages here. 85 self.assertEqual(repo.description,
|
H A D | t_api_info.py | 68 add set name=description value="Ye Olde Summary" 88 add set description='FOOO bAr O OO OOO' 91 add set pkg.description="DESCRIPTION 1" 98 add set pkg.description="DESCRIPTION 2" 105 add set description='DESCRIPTION: Example Package 6' 107 add set pkg.description="DESCRIPTION 3" 113 add set name=description value="Amber's Olde Summary" 175 self.assertEqual(res.description, None) 186 self.assertEqual(res.description, None) 197 self.assertEqual(res.description, Non [all...] |
H A D | t_p5i.py | 70 "description": "xkcd.net/325", 100 repo = publisher.Repository(description="xkcd.net/325", 147 self.assertEqual(repo.description, "xkcd.net/325") 254 "description": "xkcd.net/325",
|
H A D | t_api.py | 134 "description": "xkcd.net/325", 394 repo.description = "xkcd.net/325" 405 self.assertEqual(repo.description, "xkcd.net/325") 416 for p in ("collection_type", "description", "legal_uris", 474 self.assertEqual(repo.description, "xkcd.net/325")
|
H A D | t_publisher.py | 190 "description": "Provides only the best BobCat packages!", 232 "description": "Provides only the best BobCat packages!", 347 description="Provides only the best BobCat packages!",
|
/pkg/src/modules/ |
H A D | api_common.py | 139 files=None, dirs=None, dependencies=None, description=None, 162 self.description = description 240 elif attr_name == "description": 244 elif attr_name == "pkg.description":
|
H A D | p5i.py | 119 "description", "name", 205 "description": r.description,
|
H A D | p5s.py | 121 "description", "name", 235 "description": r.description,
|
/pkg/src/modules/server/ |
H A D | api.py | 336 description = None 339 summary, description, cat_info, dependencies = \ 396 description=description))
|
/pkg/src/ |
H A D | setup.py | 496 description = "Runs pylint tools over IPS python source code" variable in class:pylint_func 614 description = "Runs lint tools over IPS C extension source code" variable in class:clint_func 701 description = "Runs C and Python lint checkers" variable in class:lint_func 1117 description = "De-CDDLing file copy" variable in class:installfile 1445 description = "build data files whose source isn't in deliverable form" variable in class:build_data_func 1502 description = "Deletes any and all files created by setup" variable in class:clobber_func 1552 description = "Runs unit and functional tests" variable in class:test_func
|
H A D | pkgrepo.py | 695 "description": pub_repo.description, 707 "description": "", 1542 # A map of error detail types to the human-readable description of each
|
/pkg/src/modules/client/ |
H A D | publisher.py | 736 description = None variable in class:Repository 739 def __init__(self, collection_type=REPO_CTYPE_CORE, description=None, 748 'description' is an optional string value containing a 793 self.description = description 824 description=self.description,
|
H A D | rad_pkg.py | 308 description = property(get_any("_description"), variable in class:PkgInfo
|
H A D | client_api.py | 506 def __construct_json_schema(title, description=None, stype="object", 514 if description: 515 json_schema["description"] = description 1232 # the first plan description is always for ourself. 1765 for prop in ("collection_type", "description", 2354 if pi.description: 2355 __append_attr_lists(_("Description"), pi.description)
|
H A D | api.py | 1123 # description for display to the client (if they requested it), 1360 This function first yields the plan description for the global 2411 For a description of the return value, refer to the 2436 For a description of the return value, refer to the 2454 For a description of the return value, refer to the 4130 if atname == "description": 4374 description = None 4387 ignored, description, ignored, \ 4486 description=description, attr [all...] |