Full text search for "thread"


Search BackLinks only
Display context of search results
Case-sensitive searching
  • LockingWithUpdatingStatusFieldInJpaEnvironmentUsingAutoClosable . . . . 15 matches
          Thread thread0 = new Thread(() -> updateWorkerValue2(targetId, "worker0"));
          Thread thread1 = new Thread(() -> updateWorkerValue2(targetId, "worker1"));
          Thread thread2 = new Thread(() -> updateWorkerValue2(targetId, "worker2"));
          Thread thread3 = new Thread(() -> updateWorkerValue2(targetId, "worker3"));
          Thread thread4 = new Thread(() -> updateWorkerValue2(targetId, "worker4"));
          thread0.start();
          thread1.start();
          thread2.start();
          thread3.start();
          thread4.start();
          thread0.join();
          thread1.join();
          thread2.join();
          thread3.join();
          thread4.join();
  • LockingWithUpdatingStatusFieldInJpaEnvironment . . . . 6 matches
          Thread thread1 = new Thread(() -> { updateWorkerValue(targetId, "worker1");});
          Thread thread2 = new Thread(() -> { updateWorkerValue(targetId, "worker2");});
          thread1.start();
          thread2.start();
          thread1.join();
          thread2.join();
  • ThreadJoin()Test . . . . 4 matches
         [java] [thread]의 join 메소드 관련테스트
         public class ThreadTest
          Mythread th = new ThreadTest().new Mythread();
          class Mythread extends Thread
          Thread.sleep(1000);
  • JavaTips . . . . 3 matches
         inputStream = Thread.currentThread().getContextClassLoader()
          this.threadKeyInEchoEraser = new Thread(new Runnable(){
          while(shouldRunKeyInEchoEraserThread){
          Thread.sleep(1);
          this.shouldRunKeyInEchoEraserThread = true;
          this.threadKeyInEchoEraser.start();
          // stop keyinEchoEraser thread
          this.shouldRunKeyInEchoEraserThread = false;
  • ThreadPattern . . . . 2 matches
         [thread] pattern
         [thread-per_message pattern]
  • glance . . . . 2 matches
         > thread count (Thd Cnt) = total number of kernel threads for the current process
  • thread . . . . 2 matches
         [thread join() test] - join 메소드 테스트 코드
         [thread pattern]
  • DeadLock . . . . 1 match
         [java] [dead lock] test, [thread]
          ThreadA ta = new ThreadA(l1, l2);
          ThreadB tb = new ThreadB(l1, l2);
         == ThreadA.java ==
         public class ThreadA extends Thread
          public ThreadA(Lock lock1, Lock lock2)
         == ThreadB.java ==
         public class ThreadB extends Thread
          public ThreadB(Lock lock1, Lock lock2)
  • Java관련기술 . . . . 1 match
         [thread]
  • OurSoftwareDependencyProblem . . . . 1 match
         It is especially worth exercising the likely problem areas identified by the basic inspection. For Code Search, we knew from past experience that PCRE sometimes took a long time to execute certain regular expression searches. Our initial plan was to have separate thread pools for “simple” and “complicated” regular expression searches. One of the first tests we ran was a benchmark, comparing pcregrep with a few other grep implementations. When we found that, for one basic test case, pcregrep was 70X slower than the fastest grep available, we started to rethink our plan to use PCRE. Even though we eventually dropped PCRE entirely, that benchmark remains in our code base today.
  • ProducerConsumerPattern . . . . 1 match
         [thread pattern] >
         public class Producer extends Thread
          Thread.sleep(random.nextInt(1000));
         public class Consumer extends Thread
          Thread.sleep(random.nextInt(1000));
          System.out.println(Thread.currentThread().getName()
          System.out.println(Thread.currentThread().getName() + " get data : "
          System.out.println(Thread.currentThread().getName()
          System.out.println(Thread.currentThread().getName() + " put data : "
  • Read-writeLockPattern . . . . 1 match
         [thread pattern]
Found 12 matching pages out of 1802 total pages

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2008-08-27 17:32:32
Processing time 0.0068 sec