Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RecentlyNullable (0.05 sec)

  1. .idea/misc.xml

              <item index="1" class="java.lang.String" itemvalue="androidx.annotation.Nullable" />
              <item index="2" class="java.lang.String" itemvalue="androidx.annotation.RecentlyNullable" />
              <item index="3" class="java.lang.String" itemvalue="com.android.annotations.Nullable" />
              <item index="4" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" />
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 11 17:25:01 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

       */
      private void aboutToAcquire(CycleDetectingLock lock) {
        if (!lock.isAcquiredByCurrentThread()) {
          // requireNonNull accommodates Android's @RecentlyNullable annotation on ThreadLocal.get
          ArrayList<LockGraphNode> acquiredLockList = requireNonNull(acquiredLocks.get());
          LockGraphNode node = lock.getLockGraphNode();
          node.checkAcquiredLocks(policy, acquiredLockList);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top