Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

       *     the arguments, or if any has already been {@linkplain #finishToFuture() finished}
       */
      public static <V1 extends @Nullable Object, V2 extends @Nullable Object>
          Combiner2<V1, V2> whenAllSucceed(ClosingFuture<V1> future1, ClosingFuture<V2> future2) {
        return new Combiner2<>(future1, future2);
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

          @Override
          @ParametricNullness
          public V2 apply(@ParametricNullness V1 v1) {
            return transformer.transformEntry(key, v1);
          }
        };
      }
    
      /** Views an entry transformer as a function from {@code Entry} to values. */
      static <K extends @Nullable Object, V1 extends @Nullable Object, V2 extends @Nullable Object>
          Function<Entry<K, V1>, V2> asEntryToValueFunction(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
Back to top