Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testEncodedStringInputs (0.13 seconds)

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

        assertEquals(
            murmur3_32().hashBytes("ABCDefGHI\u0799".getBytes(UTF_8)),
            murmur3_32().hashString("ABCDefGHI\u0799", UTF_8));
      }
    
      @SuppressWarnings("deprecation")
      public void testEncodedStringInputs() {
        Random rng = new Random(0);
        for (int z = 0; z < 100; z++) {
          int[] codePoints = new int[rng.nextInt(8)];
          for (int i = 0; i < codePoints.length; i++) {
            do {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java

        assertEquals(
            murmur3_32().hashBytes("ABCDefGHI\u0799".getBytes(UTF_8)),
            murmur3_32().hashString("ABCDefGHI\u0799", UTF_8));
      }
    
      @SuppressWarnings("deprecation")
      public void testEncodedStringInputs() {
        Random rng = new Random(0);
        for (int z = 0; z < 100; z++) {
          int[] codePoints = new int[rng.nextInt(8)];
          for (int i = 0; i < codePoints.length; i++) {
            do {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 8.4K bytes
    - Click Count (0)
Back to Top