Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fnvString (0.11 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    			// without any allocation. It should be clear from the
    			// source code calling Hash what the bad argument was.
    			panic("bisect.Hash: unexpected argument type")
    		case string:
    			h = fnvString(h, v)
    		case byte:
    			h = fnv(h, v)
    		case int:
    			h = fnvUint64(h, uint64(v))
    		case uint:
    			h = fnvUint64(h, uint64(v))
    		case int32:
    			h = fnvUint32(h, uint32(v))
    		case uint32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. src/internal/bisect/bisect.go

    			// without any allocation. It should be clear from the
    			// source code calling Hash what the bad argument was.
    			panic("bisect.Hash: unexpected argument type")
    		case string:
    			h = fnvString(h, v)
    		case byte:
    			h = fnv(h, v)
    		case int:
    			h = fnvUint64(h, uint64(v))
    		case uint:
    			h = fnvUint64(h, uint64(v))
    		case int32:
    			h = fnvUint32(h, uint32(v))
    		case uint32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds.go

    	}
    
    	ret.isAlpha = strings.Contains(currentVersion.GitVersion, "alpha")
    
    	if envString, ok := os.LookupEnv("KUBE_APISERVER_STRICT_REMOVED_API_HANDLING_IN_ALPHA"); !ok {
    		// do nothing
    	} else if envBool, err := strconv.ParseBool(envString); err != nil {
    		return nil, err
    	} else {
    		ret.strictRemovedHandlingInAlpha = envBool
    	}
    
    	if envString, ok := os.LookupEnv("KUBE_APISERVER_SERVE_REMOVED_APIS_FOR_ONE_RELEASE"); !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 03:02:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
Back to top