Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for orValue (0.05 seconds)

  1. CHANGELOG/CHANGELOG-1.33.md

      An example claim validation rule expression that matches the validation automatically
      applied when username.claim is set to 'email' is 'claims.?email_verified.orValue(true) == true'. 
      By explicitly comparing the value to true, we let type-checking see the result will be a boolean, 
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:17:58 GMT 2026
    - 369K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * acquire other locks, risking deadlocks.
       */
      @CanIgnoreReturnValue
      @Override
      public boolean cancel(boolean mayInterruptIfRunning) {
        @RetainedLocalRef Object localValue = value();
        boolean rValue = false;
        if (localValue == null | localValue instanceof DelegatingToFuture) {
          // Try to delay allocating the exception. At this point we may still lose the CAS, but it is
          // certainly less likely.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 14:39:00 GMT 2026
    - 43.6K bytes
    - Click Count (0)
Back to Top