Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TimedThread (0.06 sec)

  1. 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();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  2. 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.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (2)
Back to top