Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for localeData (0.2 sec)

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

      public long timeCopy(int reps) throws IOException {
        long r = 0;
        String localData = data;
        TargetSupplier localTarget = target;
        CopyStrategy localStrategy = strategy;
        for (int i = 0; i < reps; i++) {
          Appendable appendable = localTarget.get(localData.length());
          r += localStrategy.copy(new StringReader(localData), appendable);
        }
        return r;
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java

                            for (int i = 0; i < operationsPerThread; i++) {
                                byte[] localData = new byte[128];
                                Arrays.fill(localData, (byte) i);
                                digest.sign(localData, 0, localData.length, request, response);
                                completedOps.incrementAndGet();
                            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 43.7K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/io/ByteSourceAsCharSourceReadBenchmark.java

      }
    
      @Benchmark
      public int timeCopy(int reps) throws IOException {
        int r = 0;
        Charset localCharset = charset;
        ByteSource localData = data;
        ReadStrategy localStrategy = strategy;
        for (int i = 0; i < reps; i++) {
          r += localStrategy.read(localData, localCharset).hashCode();
        }
        return r;
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top