Lines Matching refs:key
329 for key in a.differences(targ):
333 if key.startswith("variant") or \
334 key.startswith("facet") or \
335 key.startswith("mediator") or \
336 key.startswith("target") or \
337 key.startswith("pkg.linted"):
345 differences.add(key)
350 for key in sorted(differences):
352 # this key the fmris that deliver them
361 if key in a.attrs:
362 val = a.attrs[key]
371 key, val,
391 " ".join([key for key in suspects])),
771 for key in action_copy.attrs.keys():
772 if key in ["path", "overlay"]:
774 elif key.startswith("variant"):
777 del action_copy.attrs[key]
823 for key, val in group:
824 vars.add("{0}={1}".format(key, val))
831 for key in FileAction.unique_attrs:
832 if key == "preserve":
834 attrs[key] = action.attrs.get(key, None)
1033 for key in action.attrs.keys():
1034 if "_" in key:
1035 if (key in ["original_name", "refresh_fmri",
1038 key.startswith("facet.locale.") or
1039 key.startswith("facet.version-lock.") or
1040 key.startswith("pkg.")):
1043 _("underscore in attribute name {key} in "
1045 key=key,
1425 """Log an INFO message with the key/value pairs of all
1431 linted_attrs = [(key, action.attrs[key])
1432 for key in sorted(action.attrs.keys())
1433 if key.startswith("pkg.linted")]
1440 linted=", ".join(["{0}={1}".format(key, val)
1441 for key,val in linted_attrs])),
1534 for key in action.attrs.keys():
1535 if key.startswith("facet"):
1536 value = action.attrs[key].lower()
1541 "attribute name {key} "
1543 key=key,