/external/testng/src/test/java/test/thread/ |
ThreadPoolSampleBugTest.java | 8 @Test(invocationCount = 1, threadPoolSize = 5) 13 @Test(invocationCount = 2, threadPoolSize = 5) 18 @Test(timeOut = 10, invocationCount = 1, threadPoolSize = 5) 23 @Test(timeOut = 10, invocationCount = 2, threadPoolSize = 5)
|
ThreadPoolSizeSampleTest.java | 6 @Test(threadPoolSize=2, timeOut=100)
|
ThreadPoolSizeTest.java | 6 @Test(invocationCount = 5, threadPoolSize = 3)
|
ThreadPoolSizeWithTimeOutTest.java | 11 @Test(invocationCount = 5, threadPoolSize = 3, timeOut = 1000)
|
/external/testng/src/main/java/org/testng/internal/thread/ |
ThreadUtil.java | 34 * @param threadPoolSize the size of the parallel threads to be used to execute the tasks
38 public static final void execute(List<? extends Runnable> tasks, int threadPoolSize,
44 + " workers:" + tasks.size() + " threadPoolSize:" + threadPoolSize);
45 ExecutorService pooledExecutor = // Executors.newFixedThreadPool(threadPoolSize);
46 new ThreadPoolExecutor(threadPoolSize, threadPoolSize,
|
/external/testng/src/test/java/test/dataprovider/ |
ParallelDataProvider2Test.java | 27 @Test(groups = "cme", dataProvider = "provide", invocationCount = 2, threadPoolSize = 2)
|
ParallelDataProviderTest.java | 32 @Test(dataProvider = "test1", threadPoolSize = 5)
|
/external/testng/src/test/java/test/tmp/ |
Tmp.java | 9 @Test(invocationCount = 10, threadPoolSize = 5)
|
AssertEqualsTest.java | 17 @Test(threadPoolSize = 3, invocationCount = 6) 30 @Test(threadPoolSize = 10, invocationCount = 10000)
|
/external/testng/src/main/java/org/testng/internal/ |
PoolService.java | 24 public PoolService(int threadPoolSize) { 36 m_executor = Executors.newFixedThreadPool(threadPoolSize, m_threadFactory);
|
TestNGMethod.java | 159 public void setThreadPoolSize(int threadPoolSize) {
160 m_threadPoolSize = threadPoolSize;
|
ClonedMethod.java | 291 public void setThreadPoolSize(int threadPoolSize) {
|
BaseTestMethod.java | 625 public void setThreadPoolSize(int threadPoolSize) {
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
UDPMessageProcessor.java | 77 protected int threadPoolSize; 169 if (sipStack.threadPoolSize != -1) { 170 for (int i = 0; i < sipStack.threadPoolSize; i++) { 231 if (sipStack.threadPoolSize != -1) {
|
UDPMessageChannel.java | 257 if (sipStack.threadPoolSize != -1) { 304 if (sipStack.threadPoolSize == -1) { [all...] |
SIPTransactionStack.java | 245 protected int threadPoolSize; 427 this.threadPoolSize = -1; [all...] |
/external/testng/src/main/java/org/testng/annotations/ |
Test.java | 83 public int threadPoolSize() default 0;
|
/external/testng/src/test/java/test/configuration/ |
ConfigurationGroupBothSampleTest.java | 25 @Test(groups={"twice"}, dataProvider="MyData", invocationCount = 2, threadPoolSize=2)
|
/external/testng/src/main/java/org/testng/internal/annotations/ |
TestAnnotation.java | 125 public void setThreadPoolSize(int threadPoolSize) {
126 m_threadPoolSize = threadPoolSize;
|
JDK15TagFactory.java | 397 result.setThreadPoolSize(test.threadPoolSize());
|
/frameworks/volley/src/main/java/com/android/volley/ |
RequestQueue.java | 105 * @param threadPoolSize Number of network dispatcher threads to create 108 public RequestQueue(Cache cache, Network network, int threadPoolSize, 112 mDispatchers = new NetworkDispatcher[threadPoolSize]; 121 * @param threadPoolSize Number of network dispatcher threads to create 123 public RequestQueue(Cache cache, Network network, int threadPoolSize) { 124 this(cache, network, threadPoolSize,
|
/external/testng/src/main/java/org/testng/ |
ITestNGMethod.java | 169 * clones of this method - this is relevant when threadPoolSize is bigger than 1
206 void setThreadPoolSize(int threadPoolSize);
|
/external/testng/src/test/java/test/mannotation/ |
MTest1.java | 24 threadPoolSize = 3,
|
/external/nist-sip/java/gov/nist/javax/sip/ |
SipStackImpl.java | [all...] |
/external/testng/src/test/java/org/testng/internal/ |
MethodInstanceTest.java | 456 public void setThreadPoolSize(int threadPoolSize) {
|