Searched refs:threadsToCreate (Results 1 - 3 of 3) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DThreadPool.java111 * @param threadsToCreate number of threads of the pool after creation
113 protected void createThreads(int threadsToCreate) { argument
114 if (threadsToCreate > poolSize) {
115 threadsToCreate = poolSize;
117 for (int i = currentThreadCount; i < threadsToCreate; i++) {
122 currentThreadCount = threadsToCreate;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/https/
H A DJSSThreadPool.java83 * @param threadsToCreate number of threads of the pool after creation
85 protected void createThreads(int threadsToCreate) { argument
86 if (threadsToCreate > poolSize) {
87 threadsToCreate = poolSize;
89 for (int i = currentThreadCount; i < threadsToCreate; i++) {
94 currentThreadCount = threadsToCreate;
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DThreadPool.java111 * @param threadsToCreate number of threads of the pool after creation
113 protected void createThreads(int threadsToCreate) { argument
114 if (threadsToCreate > poolSize) {
115 threadsToCreate = poolSize;
117 for (int i = currentThreadCount; i < threadsToCreate; i++) {
122 currentThreadCount = threadsToCreate;

Completed in 177 milliseconds