Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for encodingStream (0.94 sec)

  1. guava-tests/benchmark/com/google/common/io/BaseEncodingBenchmark.java

        }
        return tmp;
      }
    
      @Benchmark
      public int encodingStream(int reps) throws IOException {
        int tmp = 0;
        for (int i = 0; i < reps; i++) {
          StringWriter target = new StringWriter(2 * n);
          OutputStream encodingStream = encoding.encoding.encodingStream(target);
          encodingStream.write(encodingInputs[i & INPUTS_MASK]);
          encodingStream.close();
          tmp += target.getBuffer().length();
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top