Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for abcdefghijklmnopqrstuvwxyz_0123456789 (0.29 sec)

  1. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

            "01234567890123456789012345678901234567890123456789"
        )
        cache.edit(key)!!.abort()
        // Contains all valid characters.
        key = "abcdefghijklmnopqrstuvwxyz_0123456789"
        cache.edit(key)!!.abort()
        // Contains dash.
        key = "-20384573948576"
        cache.edit(key)!!.abort()
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  2. cmd/dummy-data-generator_test.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"testing"
    )
    
    var alphabets = []byte("abcdefghijklmnopqrstuvwxyz0123456789")
    
    // DummyDataGen returns a reader that repeats the bytes in `alphabets`
    // upto the desired length.
    type DummyDataGen struct {
    	b           []byte
    	idx, length int64
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Sep 19 18:05:16 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

        for (int i = 0; i < reps; i++) {
          dummy += matcher.matches(string.charAt(i % string.length())) ? 1 : 0;
        }
        return dummy;
      }
    
      private static final String NONMATCHING_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789";
    
      private static String checkString(
          int length, int percent, String matchingChars, Random rand, boolean forceSlow, boolean 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)
  4. android/guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

        for (int i = 0; i < reps; i++) {
          dummy += matcher.matches(string.charAt(i % string.length())) ? 1 : 0;
        }
        return dummy;
      }
    
      private static final String NONMATCHING_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789";
    
      private static String checkString(
          int length, int percent, String matchingChars, Random rand, boolean forceSlow, boolean 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)
Back to top