Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for square (0.19 sec)

  1. android/guava/src/com/google/common/reflect/Types.java

       * In JDK 1.7.0_51-b13, {@link TypeVariableImpl#equals(Object)} is changed to no longer be equal
       * to custom TypeVariable implementations. As a result, we need to make sure our TypeVariable
       * implementation respects symmetry. Moreover, we don't want to reconstruct a native type variable
       * {@code <A>} using our implementation unless some of its bounds have changed in resolution. This
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

       * Function<Integer, String> square = new Function<Integer, String>() {
       *     public String apply(Integer in) {
       *       return Integer.toString(in * in);
       *     }
       * };
       * Multimap<String, String> transformed =
       *     Multimaps.transformValues(multimap, square);
       *   System.out.println(transformed);
       * }</pre>
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       *
       * @since 27.0
       */
      @Override
      /*
       * We should annotate the superclass, InternalFutureFailureAccess, to say that its copy of this
       * method returns @Nullable, too. However, we're not sure if we want to make any changes to that
       * class, since it's in a separate artifact that we planned to release only a single version of.
       */
      @CheckForNull
      protected final Throwable tryInternalFastPathGetFailure() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       * backing set. The returned map does not support put operations.
       *
       * <p><b>Warning:</b> If the function rejects {@code null}, caution is required to make sure the
       * set does not contain {@code null}, because the view cannot stop {@code null} from being added
       * to the set.
       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of key type {@code K},
    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