Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testSleepSingleInterrupt (0.24 sec)

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

        thread.joinUnsuccessfully(70);
        assertInterrupted();
      }
    
      // sleep() Tests
      public void testSleepNoInterrupt() {
        sleepSuccessfully(10);
      }
    
      public void testSleepSingleInterrupt() {
        requestInterruptIn(10);
        sleepSuccessfully(50);
        assertInterrupted();
      }
    
      public void testSleepMultiInterrupt() {
        repeatedlyInterruptTestThread(10, tearDownStack);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        thread.joinUnsuccessfully(70);
        assertInterrupted();
      }
    
      // sleep() Tests
      public void testSleepNoInterrupt() {
        sleepSuccessfully(10);
      }
    
      public void testSleepSingleInterrupt() {
        requestInterruptIn(10);
        sleepSuccessfully(50);
        assertInterrupted();
      }
    
      public void testSleepMultiInterrupt() {
        repeatedlyInterruptTestThread(10, tearDownStack);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 30.9K bytes
    - Viewed (0)
Back to top