Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for startThread (0.06 seconds)

  1. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        CountDownLatch startedLatch = new CountDownLatch(1);
        startThread(
            () -> {
              startedLatch.countDown();
              enterSatisfyGuardAndLeaveInCurrentThread();
            });
        awaitUninterruptibly(startedLatch);
      }
    
      private void enterAndRemainOccupyingInAnotherThread() {
        CountDownLatch enteredLatch = new CountDownLatch(1);
        startThread(
            () -> {
              monitor.enter();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 26.7K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/SupplementalMonitorTest.java

     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static com.google.common.truth.Truth.assertThat;
    import static com.google.common.util.concurrent.GeneratedMonitorTest.startThread;
    import static com.google.common.util.concurrent.Uninterruptibles.joinUninterruptibly;
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.annotations.GwtIncompatible;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 5K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/util/concurrent/SupplementalMonitorTest.java

     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static com.google.common.truth.Truth.assertThat;
    import static com.google.common.util.concurrent.GeneratedMonitorTest.startThread;
    import static com.google.common.util.concurrent.Uninterruptibles.joinUninterruptibly;
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.annotations.GwtIncompatible;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 5K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        CountDownLatch startedLatch = new CountDownLatch(1);
        startThread(
            () -> {
              startedLatch.countDown();
              enterSatisfyGuardAndLeaveInCurrentThread();
            });
        awaitUninterruptibly(startedLatch);
      }
    
      private void enterAndRemainOccupyingInAnotherThread() {
        CountDownLatch enteredLatch = new CountDownLatch(1);
        startThread(
            () -> {
              monitor.enter();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 26.7K bytes
    - Click Count (0)
Back to Top