Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getOrInitSeenExceptions (0.34 sec)

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

            // Go up the causal chain to see if we've already seen this cause; if we have, even if
            // it's wrapped by a different exception, don't log it.
            boolean firstTimeSeeingThisException = addCausalChain(getOrInitSeenExceptions(), throwable);
            if (firstTimeSeeingThisException) {
              log(throwable);
              return;
            }
          }
        }
    
        /*
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 15.4K bytes
    - Viewed (0)
Back to top