Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for balancing (0.25 sec)

  1. docs/en/docs/deployment/docker.md

    One of those distributed container management systems like Kubernetes normally has some integrated way of handling **replication of containers** while still supporting **load balancing** for the incoming requests. All at the **cluster level**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/endpoint_builder.go

    		//    This can be problematic: double mirroring, fault injection, request manipulation, ....
    		//    Instead, we consider this to workload traffic. This gives the same behavior as if we were an application doing internal load balancing
    		//    with ztunnel.
    		//    Note: there is a pretty valid case for wanting to send to the service from ingress. This gives a two tier delegation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/testing/benchmark.go

    	if b.N == 0 {
    		return // Nothing to do when probing.
    	}
    	// Calculate grain size as number of iterations that take ~100µs.
    	// 100µs is enough to amortize the overhead and provide sufficient
    	// dynamic load balancing.
    	grain := uint64(0)
    	if b.previousN > 0 && b.previousDuration > 0 {
    		grain = 1e5 * uint64(b.previousN) / uint64(b.previousDuration)
    	}
    	if grain < 1 {
    		grain = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// GoawayChance is the probability that send a GOAWAY to HTTP/2 clients. When client received
    	// GOAWAY, the in-flight requests will not be affected and new requests will use
    	// a new TCP connection to triggering re-balancing to another server behind the load balance.
    	// Default to 0, means never send GOAWAY. Max is 0.02 to prevent break the apiserver.
    	GoawayChance float64
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * concurrently, returning once any connection connects successfully.
         *
         * This implements Happy Eyeballs ([RFC 6555][rfc_6555]), balancing connect latency vs.
         * wasted resources.
         *
         * Defaults to enabled, call with [fastFallback] = false to revert to 4.x behaviour.
         *
         * [rfc_6555]: https://datatracker.ietf.org/doc/html/rfc6555
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. pilot/pkg/xds/eds_test.go

    		ConfigString: mustReadFile(t, "tests/testdata/config/destination-rule-locality.yaml"),
    	})
    
    	m := s.MemRegistry
    	addUdsEndpoint(s.Discovery, m)
    
    	// enable locality load balancing and add relevant endpoints in order to test
    	addLocalityEndpoints(m, "locality.cluster.local")
    	addLocalityEndpoints(m, "locality-no-outlier-detection.cluster.local")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    func (info *endpointInfo) Port() int {
    	return int(info.port)
    }
    
    // Uses mac prefix and IPv4 address to return a mac address
    // This ensures mac addresses are unique for proper load balancing
    // There is a possibility of MAC collisions but this Mac address is used for remote endpoints only
    // and not sent on the wire.
    func conjureMac(macPrefix string, ip net.IP) string {
    	if ip4 := ip.To4(); ip4 != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/dist/test.go

    	registerStdTestSpecially := map[string]bool{
    		// testdir can run normally as part of "go test std cmd", but because
    		// it's a very large test, we register is specially as several shards to
    		// enable better load balancing on sharded builders. Ideally the build
    		// system would know how to shard any large test package.
    		"cmd/internal/testdir": true,
    	}
    
    	// Fast path to avoid the ~1 second of `go list std cmd` when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top