Searched refs:exception_throwing_generator (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | _test_multiprocessing.py | 2404 def exception_throwing_generator(total, when): function 2491 self.pool.map(sqr, exception_throwing_generator(1, -1), 1) 2494 self.pool.map(sqr, exception_throwing_generator(1, -1), 1) 2497 self.pool.map(sqr, exception_throwing_generator(10, 3), 1) 2542 it = self.pool.imap(sqr, exception_throwing_generator(1, -1), 1) 2545 it = self.pool.imap(sqr, exception_throwing_generator(1, -1), 1) 2548 it = self.pool.imap(sqr, exception_throwing_generator(10, 3), 1) 2554 it = self.pool.imap(sqr, exception_throwing_generator(20, 7), 2) 2558 it = self.pool.imap(sqr, exception_throwing_generator(20, 7), 4) 2576 exception_throwing_generator(1, -1), [all …]
|
/aosp_15_r20/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1182 def exception_throwing_generator(total, when): function 1247 it = self.pool.imap(sqr, exception_throwing_generator(10, 3), 1) 1253 it = self.pool.imap(sqr, exception_throwing_generator(20, 7), 2) 1257 it = self.pool.imap(sqr, exception_throwing_generator(20, 7), 4) 1274 exception_throwing_generator(10, 3), 1285 exception_throwing_generator(20, 7),
|