Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for joins (0.12 sec)

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

       * tasks that, barring bugs in the code, will not fail. This gives it exception-handling behavior
       * similar to that of {@code ForkJoinTask.join}.
       *
       * <p>Exceptions from {@code Future.get} are treated as follows:
       *
       * <ul>
       *   <li>Any {@link ExecutionException} has its <i>cause</i> wrapped in an {@link
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

          @Override
          public TypeToken<T> getOwnerType() {
            return TypeToken.this;
          }
    
          @Override
          public String toString() {
            return getOwnerType() + "(" + Joiner.on(", ").join(getGenericParameterTypes()) + ")";
          }
        };
      }
    
      /**
       * The set of interfaces and classes that {@code T} is or is a subtype of. {@link Object} is not
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
Back to top