Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for balancing (0.41 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    integer interval: description: Time interval between ejection sweep analysis. type: string maxEjectionPercent: description: Maximum % of hosts in the load balancing pool for the upstream service that can be ejected. format: int32 type: integer minHealthPercent: description: Outlier detection will be enabled as long as the associated load balancing pool has at least min_health_percent hosts in healthy mode. format: int32 type: integer splitExternalLocalOr: description: Determines whether to distinguish...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    		valid bool
    	}{
    		{
    			name: "valid load balancer with simple load balancing", in: &networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_Simple{
    					Simple: networking.LoadBalancerSettings_ROUND_ROBIN,
    				},
    			},
    			valid: true,
    		},
    
    		{
    			name: "valid load balancer with consistentHash load balancing", in: &networking.LoadBalancerSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    							headlessTarget := match.Headless.Any(to)
    							if !headlessTarget && len(toClusters.ByNetwork()[fromCluster.NetworkName()]) > 1 {
    								// Conditionally check reached clusters to work around connection load balancing issues
    								// See https://github.com/istio/istio/issues/32208 for details
    								// We want to skip this for requests from the cross-network pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

        --region "${REGION}" \
        --protocol tcp \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --health-checks "${MASTER_NAME}-hc"
    
      gcloud compute forwarding-rules create "${MASTER_NAME}-internal" \
        --project "${PROJECT}" \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --network "${NETWORK}" \
        --subnet "${SUBNETWORK}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	return
    }
    
    func validateLoadBalancer(settings *networking.LoadBalancerSettings, outlier *networking.OutlierDetection) (errs Validation) {
    	if settings == nil {
    		return
    	}
    
    	// simple load balancing is always valid
    	consistentHash := settings.GetConsistentHash()
    	if consistentHash != nil {
    		httpCookie := consistentHash.GetHttpCookie()
    		if httpCookie != nil && httpCookie.GetName() == "" {
    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. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    us-east-1.elasticbeanstalk.com
    us-east-2.elasticbeanstalk.com
    us-gov-west-1.elasticbeanstalk.com
    us-west-1.elasticbeanstalk.com
    us-west-2.elasticbeanstalk.com
    
    // (AWS) Elastic Load Balancing
    // Submitted by Luke Wells <******@****.***>
    // Reference: 12a3d528-1bac-4433-a359-a395867ffed2
    *.elb.amazonaws.com.cn
    *.elb.amazonaws.com
    
    // AWS Global Accelerator
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top