Searched defs:key (Results 1 - 8 of 8) sorted by relevance

/pkg/src/modules/client/transport/
H A Dexception.py198 def key(self): member in class:TransportProtoError
205 return self.key() == other.key()
210 return self.key() < other.key()
213 return hash(self.key())
257 def key(self): member in class:TransportFrameworkError
263 return self.key() == other.key()
268 return self.key() < othe
296 def key(self): member in class:TransportStallError
335 def key(self): member in class:TransferContentException
378 def key(self): member in class:InvalidContentException
427 def key(self): member in class:PkgProtoError
469 def key(self): member in class:ExcessiveTransientFailure
[all...]
/pkg/src/modules/
H A D_varcet.c97 PyObject *key = PyList_GET_ITEM(keylist, idx); local
98 PyObject *re = PyDict_GetItem(res, key);
103 facets, key);
H A Dquery_parser.py104 # type, the action key, and the token that followed the last
139 key = fields[-2]
147 t.value = (pkg_name, action_type, key, token)
266 pkg_name, at, key, token = p[1]
267 fields = pkg_name, at, key
279 (pkg_name, at, key),
525 """Method which produces the sort key for an action."""
598 key = None
600 key = Query.return_action_to_key
601 return sorted(res, key
801 def key(self): member in class:PhraseQuery
[all...]
/pkg/src/modules/flavor/
H A Dbase.py184 def key(self): member in class:Dependency
191 return self.key() == other.key()
194 return self.key() < other.key()
197 return hash(self.key())
/pkg/src/util/qual-simulator/
H A Ddepot.py136 def key(self): member in class:RepositoryURI
142 The key is a (uri, proxy) tuple, where the proxy is
184 if not rc[self.key()].used:
185 rc[self.key()].record_connection(self.cspeed)
190 rc[self.key()].record_connection(self.cspeed)
192 rc[self.key()].record_tx()
197 rc[self.key()].record_error(decayable=True)
199 rc[self.key()].record_error(content=True)
201 rc[self.key()].record_error()
213 rc[self.key()]
[all...]
/pkg/src/modules/actions/
H A D_actions.c56 add_to_attrs(PyObject *attrs, PyObject *key, PyObject *attr, bool concat) argument
60 PyObject *av = PyDict_GetItem(attrs, key);
63 return (PyDict_SetItem(attrs, key, attr));
104 ret = PyDict_SetItem(attrs, key, av);
117 ret = PyDict_SetItem(attrs, key, list);
170 PyObject *key = NULL; local
173 KEY, /* key */
189 Py_XDECREF(key);\
303 malformed("whitespace in key");
329 key
[all...]
/pkg/src/modules/client/
H A Dpublisher.py446 "The absolute pathname of a PEM-encoded SSL key file.")
545 or trying one of several SSL key/cert pairs."""
608 def key(self): member in class:TransportRepoURI
614 The key is a (uri, proxy) tuple, where the proxy is
618 If this key format changes, a corresponding change should be
815 ulist.sort(key=URI_SORT_POLICIES[self.__sort_policy])
849 uris.sort(key=URI_SORT_POLICIES[self.__sort_policy])
1081 self.mirrors.sort(key=URI_SORT_POLICIES[self.__sort_policy])
1101 self.origins.sort(key=URI_SORT_POLICIES[self.__sort_policy])
1295 def __contains__(key)
[all...]
H A Dimageplan.py2246 actions = sorted(actions, key=sort_key)
2247 oactions = sorted(oactions, key=sort_key)
2257 key attribute value if only a single action of that type and
2298 oactions.sort(key=lambda x: str(x[0]))
2299 actions.sort(key=lambda x: str(x[0]))
2466 def __process_conflicts(self, key, func, actions, oactions, errclass, errs):
2487 None) == key:
2501 if attrs.get(ap.dst.key_attr) != key:
2536 if not attrs.get(ap.src.key_attr) == key:
2605 def __act_dup_check(tgt, key, actst
2999 def key(a): function in function:ImagePlan.__find_all_conflicts
[all...]

Completed in 32 milliseconds