Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for maxRetries (0.2 sec)

  1. manifests/charts/base/crds/crd-all.gen.yaml

                                        to a backend.
                                      format: int32
                                      type: integer
                                    maxRetries:
                                      description: Maximum number of retries that can
                                        be outstanding to all hosts in a cluster at a
                                        given time.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                        to a backend.
                                      format: int32
                                      type: integer
                                    maxRetries:
                                      description: Maximum number of retries that can
                                        be outstanding to all hosts in a cluster at a
                                        given time.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    			},
    			TrafficPolicy: &networking.TrafficPolicy{
    				ConnectionPool: &networking.ConnectionPoolSettings{
    					Http: &networking.ConnectionPoolSettings_HTTPSettings{
    						MaxRetries: 33,
    					},
    					Tcp: &networking.ConnectionPoolSettings_TCPSettings{
    						ConnectTimeout: &durationpb.Duration{Seconds: 33},
    					},
    				},
    				OutlierDetection: &networking.OutlierDetection{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: The idle timeout for upstream connection pool connections. type: string maxConcurrentStreams: format: int32 type: integer maxRequestsPerConnec: description: Maximum number of requests per connection to a backend. format: int32 type: integer maxRetries: description: Maximum number of retries that can be outstanding to all hosts in a cluster at a given time. format: int32 type: integer useClientProtocol: description: If set to true, client protocol will be preserved while initiating connection...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/none_ecds.json

              }
            },
            "service_name": "outbound|2000||s1tcp.none"
          },
          "connect_timeout": 1000000000,
          "circuit_breakers": {
            "thresholds": [
              {
                "max_retries": {
                  "value": 1024
                }
              }
            ]
          },
          "LbConfig": null
        },
        "outbound|2001||s1http.none": {
          "name": "outbound|2001||s1http.none",
          "type": 3,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultInMemoryCacheDecoratorFactory.java

        }
    
        private static class CacheDetails {
            private final int maxEntries;
            private final Cache<Object, Object> entries;
            private final AtomicReference<FileLock.State> lockState;
    
            CacheDetails(int maxEntries, Cache<Object, Object> entries, AtomicReference<FileLock.State> lockState) {
                this.maxEntries = maxEntries;
                this.entries = entries;
                this.lockState = lockState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. cmd/os_other.go

    	if err != nil {
    		return nil, osErrToFileErr(err)
    	}
    	defer d.Close()
    
    	maxEntries := 1000
    	if opts.count > 0 && opts.count < maxEntries {
    		maxEntries = opts.count
    	}
    
    	done := false
    	remaining := opts.count
    
    	for !done {
    		// Read up to max number of entries.
    		fis, err := d.Readdir(maxEntries)
    		if err != nil {
    			if err == io.EOF {
    				break
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 13 15:14:36 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/none_cds.json

                      "value": 1
                    }
                  }
                ]
              }
            ]
          },
          "circuit_breakers": {
            "thresholds": [
              {
                "max_retries": {
                  "value": 1024
                }
              }
            ]
          },
          "dns_lookup_family": 1,
          "LbConfig": null
        },
        "outbound|2007||tcpmeshdns.seexamples.svc": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    		}
    		if httpSettings.MaxRequestsPerConnection < 0 {
    			errs = appendErrors(errs, fmt.Errorf("max requests per connection must be non-negative"))
    		}
    		if httpSettings.MaxRetries < 0 {
    			errs = appendErrors(errs, fmt.Errorf("max retries must be non-negative"))
    		}
    		if httpSettings.IdleTimeout != nil {
    			errs = appendErrors(errs, agent.ValidateDuration(httpSettings.IdleTimeout))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. test/chan/nonblock.go

    			default:
    				try++
    				if try > maxTries {
    					println("i32receiver buffer=", buffer)
    					panic("fail")
    				}
    				sleep()
    			}
    		}
    		<-sync
    
    		go i32sender(c32, sync)
    		if buffer > 0 {
    			<-sync
    		}
    		try = 0
    	Recv32:
    		for {
    			select {
    			case i32 = <-c32:
    				break Recv32
    			default:
    				try++
    				if try > maxTries {
    					println("i32sender buffer=", buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
Back to top