Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for newInstanceWithExplicitOrdering (0.41 sec)

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

            newInstanceWithExplicitOrdering(MyOrder.class, Policies.THROW);
        lock1 = factory2.newReentrantLock(MyOrder.FIRST);
        lock2 = factory2.newReentrantLock(MyOrder.SECOND);
        lock3 = factory2.newReentrantLock(MyOrder.THIRD);
    
        CycleDetectingLockFactory.WithExplicitOrdering<OtherOrder> factory3 =
            newInstanceWithExplicitOrdering(OtherOrder.class, Policies.THROW);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

            newInstanceWithExplicitOrdering(MyOrder.class, Policies.THROW);
        lock1 = factory2.newReentrantLock(MyOrder.FIRST);
        lock2 = factory2.newReentrantLock(MyOrder.SECOND);
        lock3 = factory2.newReentrantLock(MyOrder.THIRD);
    
        CycleDetectingLockFactory.WithExplicitOrdering<OtherOrder> factory3 =
            newInstanceWithExplicitOrdering(OtherOrder.class, Policies.THROW);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

       *
       * <pre>{@code
       * CycleDetectingLockFactory.WithExplicitOrdering<MyLockOrder> factory1 =
       *   CycleDetectingLockFactory.newInstanceWithExplicitOrdering(...);
       * CycleDetectingLockFactory.WithExplicitOrdering<MyLockOrder> factory2 =
       *   CycleDetectingLockFactory.newInstanceWithExplicitOrdering(...);
       *
       * Lock lockA = factory1.newReentrantLock(MyLockOrder.FIRST);
       * Lock lockB = factory1.newReentrantLock(MyLockOrder.FIRST);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

       *
       * <pre>{@code
       * CycleDetectingLockFactory.WithExplicitOrdering<MyLockOrder> factory1 =
       *   CycleDetectingLockFactory.newInstanceWithExplicitOrdering(...);
       * CycleDetectingLockFactory.WithExplicitOrdering<MyLockOrder> factory2 =
       *   CycleDetectingLockFactory.newInstanceWithExplicitOrdering(...);
       *
       * Lock lockA = factory1.newReentrantLock(MyLockOrder.FIRST);
       * Lock lockB = factory1.newReentrantLock(MyLockOrder.FIRST);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
Back to top