Home
last modified time | relevance | path

Searched refs:transport_cls (Results 1 – 15 of 15) sorted by relevance

/dports/net/py-kombu/kombu-4.6.11/kombu/
H A Dconnection.py268 self.transport_cls = transport
619 transport_cls = self.transport_cls
620 if not transport_cls or isinstance(transport_cls, string_t):
621 transport_cls = get_transport_cls(transport_cls)
622 return transport_cls
632 transport_cls = self.transport_cls
634 transport_cls = self.resolve_aliases.get(
635 transport_cls, transport_cls)
650 ('transport', transport_cls),
666 return HashedSeq(self.transport_cls, self.hostname, self.userid,
/dports/devel/rbtools/RBTools-2.0/rbtools/api/
H A Dclient.py15 def __init__(self, url, transport_cls=SyncTransport, *args, **kwargs): argument
18 self._transport = transport_cls(url, *args, **kwargs)
/dports/net/py-kombu/kombu-4.6.11/t/unit/
H A Dtest_connection.py211 assert connection.transport_cls == 'librabbitmq'
218 assert connection.transport_cls == 'amqp'
253 assert c.transport_cls == 'foo'
259 assert c.transport_cls == 'foo'
328 assert c.transport_cls == 'redis'
336 assert c.transport_cls == 'redis'
344 assert c.transport_cls, ('librabbitmq', 'pyamqp' in 'amqp')
349 assert c.transport_cls, ('librabbitmq', 'pyamqp' in 'amqp')
354 assert c.transport_cls, ('librabbitmq', 'pyamqp' in 'amqp')
/dports/www/firefox-esr/firefox-91.8.0/third_party/python/sentry_sdk/sentry_sdk/
H A Dtransport.py352 transport_cls = HttpTransport # type: Type[Transport]
356 transport_cls = ref_transport
363 return transport_cls(options)
/dports/www/firefox/firefox-99.0/third_party/python/sentry_sdk/sentry_sdk/
H A Dtransport.py352 transport_cls = HttpTransport # type: Type[Transport]
356 transport_cls = ref_transport
363 return transport_cls(options)
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/sentry_sdk/sentry_sdk/
H A Dtransport.py352 transport_cls = HttpTransport # type: Type[Transport]
356 transport_cls = ref_transport
363 return transport_cls(options)
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/sentry-sdk/sentry_sdk/
H A Dtransport.py352 transport_cls = HttpTransport # type: Type[Transport]
356 transport_cls = ref_transport
363 return transport_cls(options)
/dports/devel/rbtools/RBTools-2.0/rbtools/commands/
H A D__init__.py577 def __init__(self, transport_cls=SyncTransport): argument
587 self.transport_cls = transport_cls or self.default_transport_cls
960 transport_cls=self.transport_cls)
/dports/devel/py-oslo.messaging/oslo.messaging-12.11.0/oslo_messaging/rpc/
H A Dtransport.py49 transport_cls=msg_transport.RPCTransport)
/dports/devel/py-oslo.messaging/oslo.messaging-12.11.0/oslo_messaging/
H A Dtransport.py194 transport_cls=RPCTransport): argument
213 return transport_cls(mgr.driver)
248 transport_cls=RPCTransport)
/dports/devel/py-sentry-sdk/sentry-sdk-1.4.3/sentry_sdk/
H A Dtransport.py518 transport_cls = HttpTransport # type: Type[Transport]
522 transport_cls = ref_transport
529 return transport_cls(options)
/dports/devel/py-celery/celery-4.4.7/t/unit/events/
H A Dtest_events.py206 connection.transport_cls = 'memory'
249 connection.transport_cls = 'memory'
/dports/devel/py-oslo.messaging/oslo.messaging-12.11.0/oslo_messaging/notify/
H A Dnotifier.py171 transport_cls=msg_transport.NotificationTransport)
/dports/devel/py-celery/celery-4.4.7/celery/app/
H A Dutils.py347 transport = conn.transport_cls
/dports/devel/py-celery/celery-4.4.7/t/unit/app/
H A Dtest_app.py939 assert conn.transport_cls == 'memory'