Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for agp (0.01 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

           *
           * In guava-jre, we avoid Unsafe by using VarHandle instead. But if we have references to
           * VarHandle in guava-android, even if they're unused under Android, we cause errors under
           * AGP: https://github.com/google/guava/issues/7769.
           *
           * My impression is that an AtomicReferenceFieldUpdater in a static field is similarly fast to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

          other.secure == secure &&
          other.httpOnly == httpOnly &&
          other.persistent == persistent &&
          other.hostOnly == hostOnly &&
          other.sameSite == sameSite
    
      @IgnoreJRERequirement // As of AGP 3.4.1, D8 desugars API 24 hashCode methods.
      override fun hashCode(): Int {
        var result = 17
        result = 31 * result + name.hashCode()
        result = 31 * result + value.hashCode()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 23.1K bytes
    - Viewed (0)
Back to top