Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for alphanums (0.14 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)
  5. pkg/volume/csi/csi_plugin_test.go

    	}{
    		{
    			name:       "missing spec",
    			shouldFail: true,
    		},
    		{
    			name:       "alphanum names for pv",
    			driverName: "testdr",
    			volName:    "testvol",
    			spec:       volume.NewSpecFromPersistentVolume(makeTestPV("test-pv", 10, "testdr", "testvol"), false),
    		},
    		{
    			name:       "alphanum names for vol source",
    			driverName: "testdr",
    			volName:    "testvol",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. src/net/url/url_test.go

    	{
    		"http://[fe80::1%25en0]/", // alphanum zone identifier
    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en0]",
    			Path:   "/",
    		},
    		"",
    	},
    	// host and port subcomponents; IPv6 address with zone identifier in RFC 6874
    	{
    		"http://[fe80::1%25en0]:8080/", // alphanum zone identifier
    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en0]:8080",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    crawler.document.site.encoding=UTF-8
    crawler.document.unknown.hostname=unknown
    crawler.document.use.site.encoding.on.english=false
    crawler.document.append.data=true
    crawler.document.append.filename=false
    crawler.document.max.alphanum.term.size=20
    crawler.document.max.symbol.term.size=10
    crawler.document.duplicate.term.removed=false
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/net/url/url.go

    //
    // Please be informed that for now shouldEscape does not check all
    // reserved characters correctly. See golang.org/issue/5684.
    func shouldEscape(c byte, mode encoding) bool {
    	// §2.3 Unreserved characters (alphanum)
    	if 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' || '0' <= c && c <= '9' {
    		return false
    	}
    
    	if mode == encodeHost || mode == encodeZone {
    		// §3.2.2 Host allows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'crawler.document.max.alphanum.term.size'. <br>
         * The value is, e.g. 20 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerDocumentMaxAlphanumTermSize();
    
        /**
         * Get the value for the key 'crawler.document.max.alphanum.term.size' as {@link Integer}. <br>
         * The value is, e.g. 20 <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    		}, {
    			name: "valid num name",
    			vol: core.Volume{
    				Name: "123",
    				VolumeSource: core.VolumeSource{
    					EmptyDir: &core.EmptyDirVolumeSource{},
    				},
    			},
    		}, {
    			name: "valid alphanum name",
    			vol: core.Volume{
    				Name: "empty-123",
    				VolumeSource: core.VolumeSource{
    					EmptyDir: &core.EmptyDirVolumeSource{},
    				},
    			},
    		}, {
    			name: "valid numalpha name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top