Searched defs:threads (Results 1 - 8 of 8) sorted by relevance

/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/tomcat/util/threads/
H A DThreadPoolMX.java59 package org.apache.tomcat.util.threads;
H A DThreadPoolRunnable.java59 package org.apache.tomcat.util.threads;
79 /** This method will be executed in one of the pool's threads. The
H A DThreadWithAttributes.java59 package org.apache.tomcat.util.threads;
H A DThreadPool.java59 package org.apache.tomcat.util.threads;
79 StringManager.getManager("org.apache.tomcat.util.threads.res");
93 * Where the threads are held.
98 * A monitor thread that monitors the pool for idel threads.
104 * Max number of threads that you can open in the pool.
109 * Min number of idel threads that you can leave in the pool.
114 * Max number of idel threads that you can leave in the pool.
119 * Number of threads in the pool.
124 * Number of busy threads in the pool.
129 * Flag that the pool should terminate all the threads an
139 protected Hashtable<Thread, ControlRunnable> threads = field in class:ThreadPool
[all...]
/glassfish-3.1.2/security/jaspic-provider-framework/src/test/java/test/com/sun/jaspic/config/
H A DRuntimeSurrogate.java154 static final TestThread[] threads = new TestThread[1024]; field in class:RuntimeSurrogate
160 for (int i = 0; i < threads.length; i++) {
161 threads[i] = new TestThread();
163 for (int i = 0; i < threads.length; i++) {
164 threads[i].start();
166 for (TestThread t : threads) {
193 static int consumerCount = threads.length;
211 if (consumerCount == threads.length) {
214 runAsConsumer = (random.nextInt(threads.length / 10) != 1);
/glassfish-3.1.2/tests/quicklook/utils/src/com/sun/appserv/test/util/process/
H A DProcessManager.java184 threads.add(thread);
202 for (Thread t : threads) {
252 private List<Thread> threads = new ArrayList<Thread>(2); field in class:ProcessManager
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/process/
H A DProcessManager.java132 // Always wait for reader threads -- unless the boolean flag is false.
194 threads.add(thread);
226 for (Thread t : threads) {
280 private List<Thread> threads = new ArrayList<Thread>(2); field in class:ProcessManager
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/impl/
H A DTransactionImpl.java149 * Number of threads participating in this transaction.
151 private int threads; field in class:TransactionImpl
212 * Number of users (or threads) currently using this connection.
607 this.threads = 1;
1105 // that other threads can access this object. See note at top of file.
1219 this.threads = 0;
1288 logMessage.append(", threads = " + this.threads); // NOI18N
1556 + " threads = " + this.threads
[all...]

Completed in 208 milliseconds