Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for TimedThread (0.05 seconds)

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

        assertTimeNotPassed(stopwatch, LONG_DELAY_MS);
      }
    
      public void testJoinNoInterrupt() {
        TimedThread thread = TimedThread.createWithDelay(20);
        thread.joinSuccessfully();
        assertNotInterrupted();
      }
    
      public void testJoinTimeoutNoInterruptNotExpired() {
        TimedThread thread = TimedThread.createWithDelay(20);
        thread.joinSuccessfully(LONG_DELAY_MS);
        assertNotInterrupted();
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 38.1K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        assertTimeNotPassed(stopwatch, LONG_DELAY_MS);
      }
    
      public void testJoinNoInterrupt() {
        TimedThread thread = TimedThread.createWithDelay(20);
        thread.joinSuccessfully();
        assertNotInterrupted();
      }
    
      public void testJoinTimeoutNoInterruptNotExpired() {
        TimedThread thread = TimedThread.createWithDelay(20);
        thread.joinSuccessfully(LONG_DELAY_MS);
        assertNotInterrupted();
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 38.1K bytes
    - Click Count (0)
  3. RELEASE.md

    *  Added `keras.utils.TimedThread` utility to run a timed thread every x seconds. It can be used to run a threaded function alongside model training or any other snippet of code.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top