Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for msglen (0.16 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.pb.go

    			}
    			var msglen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				msglen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if msglen < 0 {
    				return ErrInvalidLengthGenerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    httpHeaderName: description: Hash based on a specific HTTP header. type: string httpQueryParameterNa: description: Hash based on a specific HTTP query parameter. type: string maglev: description: The Maglev load balancer implements consistent hashing to backend hosts. properties: tableSize: description: The table size for Maglev hashing. type: integer type: object minimumRingSize: description: Deprecated. type: integer ringHash: description: The ring/modulo hash load balancer implements consistent hashing...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    				}
    				return nil
    			},
    		},
    		{
    			"consistent hash settings with Maglev",
    			&networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_ConsistentHash{
    					ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    						HashAlgorithm: &networking.LoadBalancerSettings_ConsistentHashLB_Maglev{
    							Maglev: &networking.LoadBalancerSettings_ConsistentHashLB_MagLev{},
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	cleanup = func() {} // no cleanup by default
    
    	var argLen int
    	for _, arg := range cmd.Args {
    		argLen += len(arg)
    	}
    
    	// If we're not approaching 32KB of args, just pass args normally.
    	// (use 30KB instead to be conservative; not sure how accounting is done)
    	if !useResponseFile(cmd.Path, argLen) {
    		return
    	}
    
    	tf, err := os.CreateTemp("", "args")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		}
    		if ml := consistentHash.GetMaglev(); ml != nil {
    			if ml.TableSize == 0 {
    				errs = AppendValidation(errs, fmt.Errorf("tableSize must be set for maglev"))
    			}
    			if ml.TableSize >= 5000011 {
    				errs = AppendValidation(errs, fmt.Errorf("tableSize must be less than 5000011 for maglev"))
    			}
    			if !isPrime(ml.TableSize) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. src/reflect/value.go

    	m := v.pointer()
    	mlen := int(0)
    	if m != nil {
    		mlen = maplen(m)
    	}
    	var it hiter
    	mapiterinit(v.typ(), m, &it)
    	a := make([]Value, mlen)
    	var i int
    	for i = 0; i < len(a); i++ {
    		key := mapiterkey(&it)
    		if key == nil {
    			// Someone deleted an entry from the map since we
    			// called maplen above. It's a data race, but nothing
    			// we can do about it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    		},
    
    		{
    			name: "invalid load balancer with consistentHash load balancing, maglev not prime", in: &networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_ConsistentHash{
    					ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    						HashAlgorithm: &networking.LoadBalancerSettings_ConsistentHashLB_Maglev{
    							Maglev: &networking.LoadBalancerSettings_ConsistentHashLB_MagLev{TableSize: 1000},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top