Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for invokeExact (0.08 sec)

  1. guava/src/com/google/common/hash/ChecksumHashFunction.java

        @IgnoreJRERequirement // https://github.com/mojohaus/animal-sniffer/issues/67
        static boolean updateByteBuffer(Checksum cs, ByteBuffer bb) {
          if (UPDATE_BB != null) {
            try {
              UPDATE_BB.invokeExact(cs, bb);
            } catch (Throwable e) {
              throwIfUnchecked(e);
              // This should be impossible, since `update` has no `throws` clause.
              throw new UndeclaredThrowableException(e);
            }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:05:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top