Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for putNext (0.17 sec)

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

        }
    
        // non-volatile write to the next field. Should be made visible by subsequent CAS on waiters
        // field.
        void setNext(@CheckForNull Waiter next) {
          ATOMIC_HELPER.putNext(this, next);
        }
    
        void unpark() {
          // This is racy with removeWaiter. The consequence of the race is that we may spuriously call
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        // Simply putting PATH there isn't enough. Windows has case-insensitive env vars but something else fails if the Path variable is published as PATH for test tasks.
        OperatingSystem.current().pathVar,
        "PATHEXT",
    )
    
    
    val credentialsKeywords = listOf(
        "api_key",
        "access_key",
        "apikey",
        "accesskey",
        "password",
        "token",
        "credential",
        "auth"
    )
    
    
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Apr 18 01:52:16 GMT 2023
    - 3.7K bytes
    - Viewed (0)
Back to top