Search Results
OK to copy?
Examples 1 through 10 of
118 (0.0030 seconds)
Class:
org.apache.catalina.cluster.tcp.WorkerThread
©,
Rating:
100% of 1,
C1
Class: com.technoetic.xplanner.db.hsqldb.HsqlServer ©, Rating: 100% of 3, C1
Class: org.apache.catalina.cluster.tcp.Jdk13ReplicationListener ©, Rating: 100% of 2, C1
Class: org.apache.jmeter.engine.LagDetector ©, Rating: 0% of 0, C1
Class: org.example.junit.ThreadedOutput ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.threads.ThreadWithAttributes ©, Rating: 0% of 0, C1
Class: org.apache.jk.apr.TomcatStarter ©, Rating: 0% of 0, C2
Class: org.apache.tomcat.util.threads.Reaper ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.threads.Reaper ©, Rating: 0% of 0, C1
Class: org.springframework.beans.ConcurrentBeanWrapperTests ©, Rating: 0% of 0, C2
18
19
20 public class WorkerThread extends Thread
21 {
22 private static org.apache.commons.logging.Log log =
Class: com.technoetic.xplanner.db.hsqldb.HsqlServer ©, Rating: 100% of 3, C1
35
36 public ServerThread(String database, String port) {
37 super("hsqldb-server");
38 this.database = database;
39 this.port = port;
Class: org.apache.catalina.cluster.tcp.Jdk13ReplicationListener ©, Rating: 100% of 2, C1
098 private boolean keepRunning = true;
099 private static byte[] ackMsg = new byte[] {6,2,3};
100 ClusterListenThread(Socket socket, Jdk13ObjectReader reader) {
101 this.socket = socket;
102 this.reader = reader;
Class: org.apache.jmeter.engine.LagDetector ©, Rating: 0% of 0, C1
Class: org.example.junit.ThreadedOutput ©, Rating: 0% of 0, C1
32
33 public void testOutput() throws InterruptedException {
34 Thread t = new Thread(new Runnable() {
35 public void run() {
36 System.out.println("foo");
Class: org.apache.tomcat.util.threads.ThreadWithAttributes ©, Rating: 0% of 0, C1
042
043 public ThreadWithAttributes(Object control, Runnable r) {
044 super(r);
045 this.control=control;
046 }
Class: org.apache.jk.apr.TomcatStarter ©, Rating: 0% of 0, C2
55 if( c!= null ) {
56 ++nClasses;
57 Thread startThread=new Thread( new TomcatStarter(c, args));
58 c=null;
59 startThread.start();
Class: org.apache.tomcat.util.threads.Reaper ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.threads.Reaper ©, Rating: 0% of 0, C1
029 private boolean daemon = false;
030
031 public Reaper() {
032 if (daemon)
033 this.setDaemon(true);
Class: org.springframework.beans.ConcurrentBeanWrapperTests ©, Rating: 0% of 0, C2
052 TestRun run = new TestRun(this);
053 set.add(run);
054 Thread t = new Thread(run);
055 t.setDaemon(true);
056 t.start();