本文整理匯總了Python中w3af.core.controllers.threads.threadpool.Pool.terminate方法的典型用法代碼示例。如果您正苦於以下問題:Python Pool.terminate方法的具體用法?Python Pool.terminate怎麽用?Python Pool.terminate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類w3af.core.controllers.threads.threadpool.Pool
的用法示例。
在下文中一共展示了Pool.terminate方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_increase_number_of_workers
# 需要導入模塊: from w3af.core.controllers.threads.threadpool import Pool [as 別名]
# 或者: from w3af.core.controllers.threads.threadpool.Pool import terminate [as 別名]
def test_increase_number_of_workers(self):
worker_pool = Pool(processes=2,
worker_names='WorkerThread',
maxtasksperchild=3)
self.assertEqual(worker_pool.get_worker_count(), 2)
def noop():
return 1 + 2
for _ in xrange(12):
result = worker_pool.apply_async(func=noop)
self.assertEqual(result.get(), 3)
self.assertEqual(worker_pool.get_worker_count(), 2)
worker_pool.set_worker_count(4)
# It takes some time...
self.assertEqual(worker_pool.get_worker_count(), 2)
for _ in xrange(12):
result = worker_pool.apply_async(func=noop)
self.assertEqual(result.get(), 3)
self.assertEqual(worker_pool.get_worker_count(), 4)
worker_pool.terminate()
worker_pool.join()
示例2: test_multiple_append_uniq_group
# 需要導入模塊: from w3af.core.controllers.threads.threadpool import Pool [as 別名]
# 或者: from w3af.core.controllers.threads.threadpool.Pool import terminate [as 別名]
def test_multiple_append_uniq_group(self):
def multi_append():
for i in xrange(InfoSet.MAX_INFO_INSTANCES * 2):
vuln = MockVuln()
kb.append_uniq_group('a', 'b', vuln, group_klass=MockInfoSetTrue)
info_set_list = kb.get('a', 'b')
self.assertEqual(len(info_set_list), 1)
info_set = info_set_list[0]
self.assertEqual(len(info_set.infos), InfoSet.MAX_INFO_INSTANCES)
return True
pool = Pool(2)
r1 = pool.apply_async(multi_append)
r2 = pool.apply_async(multi_append)
r3 = pool.apply_async(multi_append)
self.assertTrue(r1.get())
self.assertTrue(r2.get())
self.assertTrue(r3.get())
pool.terminate()
pool.join()
示例3: test_pickleable_shells
# 需要導入模塊: from w3af.core.controllers.threads.threadpool import Pool [as 別名]
# 或者: from w3af.core.controllers.threads.threadpool.Pool import terminate [as 別名]
def test_pickleable_shells(self):
pool = Pool(1)
xurllib = ExtendedUrllib()
original_shell = Shell(MockVuln(), xurllib, pool)
kb.append('a', 'b', original_shell)
unpickled_shell = kb.get('a', 'b')[0]
self.assertEqual(original_shell, unpickled_shell)
self.assertEqual(unpickled_shell.worker_pool, None)
self.assertEqual(unpickled_shell._uri_opener, None)
pool.terminate()
pool.join()
xurllib.end()
示例4: test_terminate_join
# 需要導入模塊: from w3af.core.controllers.threads.threadpool import Pool [as 別名]
# 或者: from w3af.core.controllers.threads.threadpool.Pool import terminate [as 別名]
def test_terminate_join(self):
worker_pool = Pool(1, worker_names='WorkerThread')
worker_pool.terminate()
worker_pool.join()
示例5: test_close_terminate
# 需要導入模塊: from w3af.core.controllers.threads.threadpool import Pool [as 別名]
# 或者: from w3af.core.controllers.threads.threadpool.Pool import terminate [as 別名]
def test_close_terminate(self):
worker_pool = Pool(1, worker_names='WorkerThread')
worker_pool.close()
worker_pool.terminate()