当前位置: 首页>>代码示例>>Python>>正文


Python pool.map_async方法代码示例

本文整理汇总了Python中multiprocessing.pool.map_async方法的典型用法代码示例。如果您正苦于以下问题:Python pool.map_async方法的具体用法?Python pool.map_async怎么用?Python pool.map_async使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在multiprocessing.pool的用法示例。


在下文中一共展示了pool.map_async方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_terminate

# 需要导入模块: from multiprocessing import pool [as 别名]
# 或者: from multiprocessing.pool import map_async [as 别名]
def test_terminate(self):
        if self.TYPE == 'manager':
            # On Unix a forked process increfs each shared object to
            # which its parent process held a reference.  If the
            # forked process gets terminated then there is likely to
            # be a reference leak.  So to prevent
            # _TestZZZNumberOfObjects from failing we skip this test
            # when using a manager.
            return

        result = self.pool.map_async(
            time.sleep, [0.1 for i in range(10000)], chunksize=1
            )
        self.pool.terminate()
        join = TimingWrapper(self.pool.join)
        join()
        self.assertTrue(join.elapsed < 0.2) 
开发者ID:dxwu,项目名称:BinderFilter,代码行数:19,代码来源:test_multiprocessing.py

示例2: test_map_chunksize

# 需要导入模块: from multiprocessing import pool [as 别名]
# 或者: from multiprocessing.pool import map_async [as 别名]
def test_map_chunksize(self):
        try:
            self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
        except multiprocessing.TimeoutError:
            self.fail("pool.map_async with chunksize stalled on null list") 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:7,代码来源:test_multiprocessing.py

示例3: test_terminate

# 需要导入模块: from multiprocessing import pool [as 别名]
# 或者: from multiprocessing.pool import map_async [as 别名]
def test_terminate(self):
        p = self.Pool(4)
        result = p.map_async(
            time.sleep, [0.1 for i in range(10000)], chunksize=1
            )
        p.terminate()
        join = TimingWrapper(p.join)
        join()
        self.assertTrue(join.elapsed < 0.2) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:11,代码来源:test_multiprocessing.py

示例4: test_empty_iterable

# 需要导入模块: from multiprocessing import pool [as 别名]
# 或者: from multiprocessing.pool import map_async [as 别名]
def test_empty_iterable(self):
        # See Issue 12157
        p = self.Pool(1)

        self.assertEqual(p.map(sqr, []), [])
        self.assertEqual(list(p.imap(sqr, [])), [])
        self.assertEqual(list(p.imap_unordered(sqr, [])), [])
        self.assertEqual(p.map_async(sqr, []).get(), [])

        p.close()
        p.join() 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:13,代码来源:test_multiprocessing.py

示例5: test_map_async

# 需要导入模块: from multiprocessing import pool [as 别名]
# 或者: from multiprocessing.pool import map_async [as 别名]
def test_map_async(self):
        self.assertEqual(self.pool.map_async(sqr, list(range(10))).get(),
                         list(map(sqr, list(range(10))))) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:5,代码来源:_test_multiprocessing.py

示例6: test_map_async_callbacks

# 需要导入模块: from multiprocessing import pool [as 别名]
# 或者: from multiprocessing.pool import map_async [as 别名]
def test_map_async_callbacks(self):
        call_args = self.manager.list() if self.TYPE == 'manager' else []
        self.pool.map_async(int, ['1'],
                            callback=call_args.append,
                            error_callback=call_args.append).wait()
        self.assertEqual(1, len(call_args))
        self.assertEqual([1], call_args[0])
        self.pool.map_async(int, ['a'],
                            callback=call_args.append,
                            error_callback=call_args.append).wait()
        self.assertEqual(2, len(call_args))
        self.assertIsInstance(call_args[1], ValueError) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:14,代码来源:_test_multiprocessing.py

示例7: test_terminate

# 需要导入模块: from multiprocessing import pool [as 别名]
# 或者: from multiprocessing.pool import map_async [as 别名]
def test_terminate(self):
        result = self.pool.map_async(
            time.sleep, [0.1 for i in range(10000)], chunksize=1
            )
        self.pool.terminate()
        join = TimingWrapper(self.pool.join)
        join()
        self.assertLess(join.elapsed, 0.5) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:10,代码来源:_test_multiprocessing.py

示例8: test_terminate

# 需要导入模块: from multiprocessing import pool [as 别名]
# 或者: from multiprocessing.pool import map_async [as 别名]
def test_terminate(self):
        result = self.pool.map_async(
            time.sleep, [0.1 for i in range(10000)], chunksize=1
            )
        self.pool.terminate()
        join = TimingWrapper(self.pool.join)
        join()
        # Sanity check the pool didn't wait for all tasks to finish
        self.assertLess(join.elapsed, 2.0) 
开发者ID:ShikyoKira,项目名称:Project-New-Reign---Nemesis-Main,代码行数:11,代码来源:_test_multiprocessing.py


注:本文中的multiprocessing.pool.map_async方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。