Search Results
OK to copy?
Examples 1 through 10 of
14 (0.0010 seconds)
Class:
org.springframework.beans.ConcurrentBeanWrapperTests
©,
Rating:
0% of 0,
C2
Class: org.springframework.beans.factory.ConcurrentBeanFactoryTests ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.util.Watchdog ©, Rating: 100% of 1, C1
Class: org.apache.catalina.cluster.tcp.ReplicationListener ©, Rating: 0% of 0, C1
Class: org.apache.axis.transport.http.SimpleAxisServer ©, Rating: 0% of 0, C1
Class: org.apache.axis.transport.http.SimpleAxisServer ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.taskdefs.PumpStreamHandler ©, Rating: 0% of 0, C1
Class: org.apache.batik.swing.JSVGInterruptTest ©, Rating: 0% of 0, C1
Class: org.apache.jasper.compiler.JspRuntimeContext ©, Rating: 0% of 0, C1
Class: org.apache.batik.util.RunnableQueue ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.ConcurrentBeanFactoryTests ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.util.Watchdog ©, Rating: 100% of 1, C1
60 stopped = false;
61 Thread t = new Thread(this, "WATCHDOG");
62 t.setDaemon(true);
63 t.start();
64 }
Class: org.apache.catalina.cluster.tcp.ReplicationListener ©, Rating: 0% of 0, C1
063 bind = java.net.InetAddress.getByName(tcpListenAddress);
064 Thread t = new Thread(this,"ClusterReceiver");
065 t.setDaemon(true);
066 t.start();
067 } catch ( Exception x ) {
Class: org.apache.axis.transport.http.SimpleAxisServer ©, Rating: 0% of 0, C1
207 if (doThreads) {
208 Thread thread = new Thread(this);
209 thread.setDaemon(daemon);
210 thread.start();
211 } else {
Class: org.apache.axis.transport.http.SimpleAxisServer ©, Rating: 0% of 0, C2
168 if (doThreads) {
169 Thread thread = new Thread(worker);
170 thread.setDaemon(true);
171 thread.start();
172 } else {
Class: org.apache.tools.ant.taskdefs.PumpStreamHandler ©, Rating: 0% of 0, C1
208 final Thread result
209 = new Thread(new StreamPumper(is, os, closeWhenExhausted));
210 result.setDaemon(true);
211 return result;
212 }
Class: org.apache.batik.swing.JSVGInterruptTest ©, Rating: 0% of 0, C1
Class: org.apache.jasper.compiler.JspRuntimeContext ©, Rating: 0% of 0, C1
456 threadDone = false;
457 thread = new Thread(this, threadName);
458 thread.setDaemon(true);
459 thread.start();
460
Class: org.apache.batik.util.RunnableQueue ©, Rating: 0% of 0, C1
133 synchronized (result) {
134 Thread t = new Thread(result, "RunnableQueue-" + threadCount++);
135 t.setDaemon(true);
136 t.start();
137 while (result.getThread() == null) {