Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MonitorTestCase (0.04 sec)

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

     *
     * @author Justin T. Sampson
     */
    @NullUnmarked
    public abstract class MonitorTestCase extends TestCase {
    
      public class TestGuard extends Monitor.Guard {
        private volatile boolean satisfied;
    
        public TestGuard(boolean satisfied) {
          super(MonitorTestCase.this.monitor);
          this.satisfied = satisfied;
        }
    
        @Override
        public boolean isSatisfied() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/UninterruptibleMonitorTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@link Monitor}'s uninterruptible methods.
     *
     * @author Justin T. Sampson
     */
    @NullUnmarked
    public class UninterruptibleMonitorTest extends MonitorTestCase {
    
      public UninterruptibleMonitorTest() {
        super(false);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 934 bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/InterruptibleMonitorTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@link Monitor}'s interruptible methods.
     *
     * @author Justin T. Sampson
     */
    @NullUnmarked
    public class InterruptibleMonitorTest extends MonitorTestCase {
    
      public InterruptibleMonitorTest() {
        super(true);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 927 bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/InterruptibleMonitorTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@link Monitor}'s interruptible methods.
     *
     * @author Justin T. Sampson
     */
    @NullUnmarked
    public class InterruptibleMonitorTest extends MonitorTestCase {
    
      public InterruptibleMonitorTest() {
        super(true);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 927 bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/UninterruptibleMonitorTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@link Monitor}'s uninterruptible methods.
     *
     * @author Justin T. Sampson
     */
    @NullUnmarked
    public class UninterruptibleMonitorTest extends MonitorTestCase {
    
      public UninterruptibleMonitorTest() {
        super(false);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 934 bytes
    - Viewed (0)
Back to top