Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for msglen (0.17 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    maglev:
                                      description: The Maglev load balancer implements
                                        consistent hashing to backend hosts.
                                      properties:
                                        tableSize:
                                          description: The table size for Maglev hashing.
                                          minimum: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  2. manifests/charts/base/crds/crd-all.gen.yaml

                                    maglev:
                                      description: The Maglev load balancer implements
                                        consistent hashing to backend hosts.
                                      properties:
                                        tableSize:
                                          description: The table size for Maglev hashing.
                                          minimum: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K 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)
Back to top