當前位置: 首頁>>代碼示例>>Python>>正文


Python ioloop.TimeoutError方法代碼示例

本文整理匯總了Python中tornado.ioloop.TimeoutError方法的典型用法代碼示例。如果您正苦於以下問題:Python ioloop.TimeoutError方法的具體用法?Python ioloop.TimeoutError怎麽用?Python ioloop.TimeoutError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在tornado.ioloop的用法示例。


在下文中一共展示了ioloop.TimeoutError方法的14個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_timeout

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
        # Set a short timeout and exceed it.
        @gen_test(timeout=0.1)
        def test(self):
            yield gen.Task(self.io_loop.add_timeout, self.io_loop.time() + 1)

        # This can't use assertRaises because we need to inspect the
        # exc_info triple (and not just the exception object)
        try:
            test(self)
            self.fail("did not get expected exception")
        except ioloop.TimeoutError:
            # The stack trace should blame the add_timeout line, not just
            # unrelated IOLoop/testing internals.
            self.assertIn(
                "gen.Task(self.io_loop.add_timeout, self.io_loop.time() + 1)",
                traceback.format_exc())

        self.finished = True 
開發者ID:tao12345666333,項目名稱:tornado-zh,代碼行數:21,代碼來源:testing_test.py

示例2: open

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def open(self, timeout=None):
        logger.debug('socket connecting')
        sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0)
        self.stream = iostream.IOStream(sock)

        try:
            connect = self.stream.connect((self.host, self.port))
            if timeout is not None:
                yield self.with_timeout(timeout, connect)
            else:
                yield connect
        except (socket.error, IOError, ioloop.TimeoutError) as e:
            message = 'could not connect to {}:{} ({})'.format(self.host, self.port, e)
            raise TTransportException(
                type=TTransportException.NOT_OPEN,
                message=message)

        raise gen.Return(self) 
開發者ID:XiaoMi,項目名稱:galaxy-sdk-python,代碼行數:20,代碼來源:TTornado.py

示例3: test_timeout

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
        # Set a short timeout and exceed it.
        @gen_test(timeout=0.1)
        def test(self):
            yield gen.sleep(1)

        # This can't use assertRaises because we need to inspect the
        # exc_info triple (and not just the exception object)
        try:
            test(self)
            self.fail("did not get expected exception")
        except ioloop.TimeoutError:
            # The stack trace should blame the add_timeout line, not just
            # unrelated IOLoop/testing internals.
            self.assertIn("gen.sleep(1)", traceback.format_exc())

        self.finished = True 
開發者ID:opendevops-cn,項目名稱:opendevops,代碼行數:19,代碼來源:testing_test.py

示例4: test_timeout

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
        # Set a short timeout and exceed it.
        @gen_test(timeout=0.1)
        def test(self):
            yield gen.sleep(1)

        # This can't use assertRaises because we need to inspect the
        # exc_info triple (and not just the exception object)
        try:
            test(self)
            self.fail("did not get expected exception")
        except ioloop.TimeoutError:
            # The stack trace should blame the add_timeout line, not just
            # unrelated IOLoop/testing internals.
            self.assertIn(
                "gen.sleep(1)",
                traceback.format_exc())

        self.finished = True 
開發者ID:tp4a,項目名稱:teleport,代碼行數:21,代碼來源:testing_test.py

示例5: open

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def open(self, timeout=None):
        logger.debug('koneksi ke server')
        sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0)
        self.stream = iostream.IOStream(sock)
        try:
            connect = self.stream.connect((self.host, self.port))
            if timeout is not None:
                yield self.with_timeout(timeout, connect)
            else:
                yield connect
        except (socket.error, IOError, ioloop.TimeoutError) as e:
            message = 'could not connect to {}:{} ({})'.format(self.host, self.port, e)
            raise TTransportException(
                type=TTransportException.NOT_OPEN,
                message=message)
        raise gen.Return(self) 
開發者ID:stya535,項目名稱:SOLO,代碼行數:18,代碼來源:TTornado.py

示例6: test_no_timeout_environment_variable

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_no_timeout_environment_variable(self):
        @gen_test(timeout=0.01)
        def test_short_timeout(self):
            time = self.io_loop.time
            yield gen.Task(self.io_loop.add_timeout, time() + 1)

        # Uses environment-variable timeout of 0.1, times out.
        with set_environ('ASYNC_TEST_TIMEOUT', '0.1'):
            with self.assertRaises(ioloop.TimeoutError):
                test_short_timeout(self)

        self.finished = True 
開發者ID:tao12345666333,項目名稱:tornado-zh,代碼行數:14,代碼來源:testing_test.py

示例7: test_native_coroutine_timeout

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_native_coroutine_timeout(self):
        # Set a short timeout and exceed it.
        namespace = exec_test(globals(), locals(), """
        @gen_test(timeout=0.1)
        async def test(self):
            await gen.sleep(1)
        """)

        try:
            namespace['test'](self)
            self.fail("did not get expected exception")
        except ioloop.TimeoutError:
            self.finished = True 
開發者ID:tao12345666333,項目名稱:tornado-zh,代碼行數:15,代碼來源:testing_test.py

示例8: test_timeout

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
        @gen.coroutine
        def f():
            yield gen.Task(self.io_loop.add_timeout, self.io_loop.time() + 1)
        self.assertRaises(TimeoutError, self.io_loop.run_sync, f, timeout=0.01) 
開發者ID:tao12345666333,項目名稱:tornado-zh,代碼行數:7,代碼來源:ioloop_test.py

示例9: test_no_timeout_environment_variable

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_no_timeout_environment_variable(self):
        @gen_test(timeout=0.01)
        def test_short_timeout(self):
            yield gen.sleep(1)

        # Uses environment-variable timeout of 0.1, times out.
        with set_environ("ASYNC_TEST_TIMEOUT", "0.1"):
            with self.assertRaises(ioloop.TimeoutError):
                test_short_timeout(self)

        self.finished = True 
開發者ID:opendevops-cn,項目名稱:opendevops,代碼行數:13,代碼來源:testing_test.py

示例10: test_native_coroutine_timeout

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_native_coroutine_timeout(self):
        # Set a short timeout and exceed it.
        @gen_test(timeout=0.1)
        async def test(self):
            await gen.sleep(1)

        try:
            test(self)
            self.fail("did not get expected exception")
        except ioloop.TimeoutError:
            self.finished = True 
開發者ID:opendevops-cn,項目名稱:opendevops,代碼行數:13,代碼來源:testing_test.py

示例11: test_timeout

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
        @gen.coroutine
        def f():
            yield gen.sleep(1)

        self.assertRaises(TimeoutError, self.io_loop.run_sync, f, timeout=0.01) 
開發者ID:opendevops-cn,項目名稱:opendevops,代碼行數:8,代碼來源:ioloop_test.py

示例12: test_timeout

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
        # Set a short timeout and exceed it.
        @gen_test(timeout=0.1)
        def test(self):
            yield gen.Task(self.io_loop.add_timeout, self.io_loop.time() + 1)

        with self.assertRaises(ioloop.TimeoutError):
            test(self)

        self.finished = True 
開發者ID:viewfinderco,項目名稱:viewfinder,代碼行數:12,代碼來源:testing_test.py

示例13: test_no_timeout_environment_variable

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_no_timeout_environment_variable(self):
        @gen_test(timeout=0.01)
        def test_short_timeout(self):
            yield gen.sleep(1)

        # Uses environment-variable timeout of 0.1, times out.
        with set_environ('ASYNC_TEST_TIMEOUT', '0.1'):
            with self.assertRaises(ioloop.TimeoutError):
                test_short_timeout(self)

        self.finished = True 
開發者ID:tp4a,項目名稱:teleport,代碼行數:13,代碼來源:testing_test.py

示例14: test_timeout

# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
        @gen.coroutine
        def f():
            yield gen.sleep(1)
        self.assertRaises(TimeoutError, self.io_loop.run_sync, f, timeout=0.01) 
開發者ID:tp4a,項目名稱:teleport,代碼行數:7,代碼來源:ioloop_test.py


注:本文中的tornado.ioloop.TimeoutError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。