Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for alphanums (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/rand/rand.go

    	defer rng.Unlock()
    	return rng.rand.Perm(n)
    }
    
    const (
    	// We omit vowels from the set of available characters to reduce the chances
    	// of "bad words" being formed.
    	alphanums = "bcdfghjklmnpqrstvwxz2456789"
    	// No. of bits required to index into alphanums string.
    	alphanumsIdxBits = 5
    	// Mask used to extract last alphanumsIdxBits of an int.
    	alphanumsIdxMask = 1<<alphanumsIdxBits - 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 11 11:02:01 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-path-alphanum-specialchars-mix.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-path-alphanum-specialchars-mix
    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 212 bytes
    - Viewed (0)
  3. test/fixedbugs/issue8325.go

    // Issue 8325: corrupted byte operations during optimization
    // pass.
    
    package main
    
    const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    
    func main() {
    	var bytes = []byte{10, 20, 30, 40, 50}
    
    	for i, b := range bytes {
    		bytes[i] = alphanum[b%byte(len(alphanum))]
    	}
    
    	for _, b := range bytes {
    		switch {
    		case '0' <= b && b <= '9',
    			'A' <= b && b <= 'Z':
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 617 bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

                            if (duplicateTermRemoved && symbolSize > 0) {
                                isSpace = removeLastDuplication(buf, symbolSize, isSpace, termCache);
                            }
                            // alphanum
                            if (maxAlphanumTermSize >= 0) {
                                if (alphanumSize < maxAlphanumTermSize) {
                                    buf.appendCodePoint(c);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top