Searched refs:threadPool (Results 1 - 4 of 4) sorted by relevance

/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/
H A DEngine.java45 private volatile Executor threadPool; field in class:Engine
51 Executor getExecutor() { return threadPool; }
53 public Engine(String id, Executor threadPool) { argument
54 this(id, ContainerResolver.getDefault().getContainer(), threadPool);
57 public Engine(String id, Container container, Executor threadPool) { argument
59 this.threadPool = threadPool != null ? wrap(threadPool) : null;
71 public void setExecutor(Executor threadPool) { argument
72 this.threadPool
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/threadpool/
H A DThreadPoolManagerImpl.java52 private ThreadPool threadPool; field in class:ThreadPoolManagerImpl
60 threadPool = new ThreadPoolImpl(threadGroup,
115 threadPool.close();
153 return threadPool;
167 return threadPool;
192 return threadPool;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DCompileTheWorld.java208 private ThreadPoolExecutor threadPool; field in class:CompileTheWorld
552 threadPool = new ThreadPoolExecutor(threadCount, threadCount, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<Runnable>(), factory);
665 while (threadPool.getCompletedTaskCount() != threadPool.getTaskCount()) {
667 TTY.println("CompileTheWorld : Waiting for " + (threadPool.getTaskCount() - threadPool.getCompletedTaskCount()) + " compiles");
670 threadPool.awaitTermination(1, TimeUnit.SECONDS);
675 threadPool = null;
711 Future<?> task = threadPool.submit(new Runnable() {
720 if (threadPool
[all...]
/openjdk9/jdk/test/java/security/testlibrary/
H A DSimpleOCSPServer.java89 private ExecutorService threadPool; field in class:SimpleOCSPServer
204 threadPool = Executors.newFixedThreadPool(32, new ThreadFactory() {
213 threadPool.submit(new Runnable() {
245 threadPool.submit(new OcspHandler(newConnection));
258 threadPool.shutdown();

Completed in 48 milliseconds