Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tmp (0.17 sec)

  1. android/guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

      void setUp() {
        this.matcher = precomputed ? config.matcher.precomputed() : config.matcher;
        if (size == Size.SMALL) {
          BitSet tmp = new BitSet();
          matcher.setBits(tmp);
          int matchedCharCount = tmp.cardinality();
          this.matcher = SmallCharMatcher.from(tmp, "");
        }
        this.string = checkString(length, percent, config.matchingChars, new Random(), forceSlow, web);
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

      void setUp() {
        this.matcher = precomputed ? config.matcher.precomputed() : config.matcher;
        if (size == Size.SMALL) {
          BitSet tmp = new BitSet();
          matcher.setBits(tmp);
          int matchedCharCount = tmp.cardinality();
          this.matcher = SmallCharMatcher.from(tmp, "");
        }
        this.string = checkString(length, percent, config.matchingChars, new Random(), forceSlow, web);
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
Back to top