Searched defs:proxy (Results 1 - 3 of 3) sorted by relevance
/pkg/src/modules/client/transport/ |
H A D | stats.py | 57 """Gets the proxy that was used at runtime for a given 63 # we don't allow the proxy used for the system publisher to be 66 if not ds.proxy: 68 return ds.proxy 70 proxy = misc.get_runtime_proxy(ds.proxy, ds.url) 71 if not proxy: 73 return proxy 89 proxy = self.__get_proxy(ds) 90 misc.msg(dfmt.format(ds.url, proxy, d 525 def proxy(self): member in class:RepoStats [all...] |
/pkg/src/util/qual-simulator/ |
H A D | depot.py | 130 proxy = property(__get_proxy, __set_proxy, None, "Proxy of the " variable in class:RepositoryURI 142 The key is a (uri, proxy) tuple, where the proxy is 143 the proxy used to reach that URI. Note that in the transport 144 system, we may choose to override the proxy value here."""
|
/pkg/src/modules/client/ |
H A D | publisher.py | 162 trailing_slash=True, proxy=None, system=False, proxies=None, 181 # The proxy parameter is deprecated and remains for backwards 184 if proxy and proxies: 186 "'proxy' values were used to create a " 189 if proxy: 190 self.proxies = [ProxyURI(proxy)] 276 def __set_proxy(self, proxy): 277 if not proxy: 279 if not isinstance(proxy, ProxyURI): 280 p = ProxyURI(proxy) 455 proxy = property(__get_proxy, __set_proxy, None, "The proxy to use to " variable in class:RepositoryURI 696 proxy = property(lambda self: self.__proxy, __set_proxy, None, variable in class:TransportRepoURI [all...] |
Completed in 13 milliseconds