Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for doFinal (0.06 seconds)

  1. guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

        Mac mac = Mac.getInstance("HmacMD5");
        mac.init(MD5_KEY);
        mac.update(input.getBytes(UTF_8));
        assertThat(HashCode.fromBytes(mac.doFinal()).toString()).isEqualTo(knownOutput);
        assertThat(HashCode.fromBytes(mac.doFinal(input.getBytes(UTF_8))).toString())
            .isEqualTo(knownOutput);
        assertThat(hmacMd5(MD5_KEY).hashString(input, UTF_8).toString()).isEqualTo(knownOutput);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  2. RELEASE.md

            *   `tf.math.argmin`/`tf.math.argmax` for input data type `tf.bool` on
                CPU.
            *   `tf.nn.gelu` op for output data type `tf.float32` and quantization
                on CPU.
        *   Add nominal support for unsigned 16-bit integer tensor types. Note that
            very few TFLite kernels support this type natively, so its use in mobile
            ML authoring is generally discouraged.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top