Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IMSE (0.2 sec)

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

        final boolean timed = isTimed(method); // Not going to bother with all timeouts, just 0ms.
        return new TestCase(method.getName() + (timed ? "(0ms)" : "()") + "/WrongMonitor->IMSE") {
          @Override
          protected void runTest() throws Throwable {
            Monitor monitor1 = new Monitor(fair1);
            Monitor monitor2 = new Monitor(fair2);
            FlagGuard guard = new FlagGuard(monitor2);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 27.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        final boolean timed = isTimed(method); // Not going to bother with all timeouts, just 0ms.
        return new TestCase(method.getName() + (timed ? "(0ms)" : "()") + "/WrongMonitor->IMSE") {
          @Override
          protected void runTest() throws Throwable {
            Monitor monitor1 = new Monitor(fair1);
            Monitor monitor2 = new Monitor(fair2);
            FlagGuard guard = new FlagGuard(monitor2);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 26.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Monitor.java

      // TODO(user): "Port" jsr166 tests for ReentrantLock.
      //
      // TODO(user): Change API to make it impossible to use a Guard with the "wrong" monitor,
      //    by making the monitor implicit, and to eliminate other sources of IMSE.
      //    Imagine:
      //    guard.lock();
      //    try { /* monitor locked and guard satisfied here */ }
      //    finally { guard.unlock(); }
      // Here are Justin's design notes about this:
      //
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 18:22:01 GMT 2023
    - 38.6K bytes
    - Viewed (0)
Back to top