Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for IdleTimeout (0.46 sec)

  1. cmd/common-main.go

    	ctxt.Interface = ctx.String("interface")
    	ctxt.UserTimeout = ctx.Duration("conn-user-timeout")
    	ctxt.SendBufSize = ctx.Int("send-buf-size")
    	ctxt.RecvBufSize = ctx.Int("recv-buf-size")
    	ctxt.IdleTimeout = ctx.Duration("idle-timeout")
    	ctxt.UserTimeout = ctx.Duration("conn-user-timeout")
    	ctxt.ShutdownTimeout = ctx.Duration("shutdown-timeout")
    
    	if conf := ctx.String("config"); len(conf) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. cmd/server-main.go

    			UseHandler(setCriticalErrorHandler(corsHandler(handler))).
    			UseTLSConfig(newTLSConfig(getCert)).
    			UseShutdownTimeout(globalServerCtxt.ShutdownTimeout).
    			UseIdleTimeout(globalServerCtxt.IdleTimeout).
    			UseReadHeaderTimeout(globalServerCtxt.ReadHeaderTimeout).
    			UseBaseContext(GlobalContext).
    			UseCustomLogger(log.New(io.Discard, "", 0)). // Turn-off random logging by Go stdlib
    			UseTCPOptions(globalTCPOptions)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy.go

    			return
    		}
    		httpMux.ServeHTTP(w, r)
    	})
    
    	p.httpTapServer = &http.Server{
    		Addr:        fmt.Sprintf("localhost:%d", port),
    		Handler:     h2c.NewHandler(mixedHandler, &http2.Server{}),
    		IdleTimeout: 90 * time.Second, // matches http.DefaultTransport keep-alive timeout
    		ReadTimeout: 30 * time.Second,
    	}
    
    	// create HTTP listener
    	listener, err := net.Listen("tcp", p.httpTapServer.Addr)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: Maximum number of requests that will be queued while waiting for a ready connection pool connection. format: int32 type: integer http2MaxRequests: description: Maximum number of active requests to a destination. format: int32 type: integer idleTimeout: 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:...
    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. src/net/http/serve_test.go

    		}), func(ts *httptest.Server) {
    			ts.Config.ReadHeaderTimeout = readHeaderTimeout
    			ts.Config.IdleTimeout = 2 * readHeaderTimeout
    		})
    		defer cst.close()
    		ts := cst.ts
    		t.Logf("ReadHeaderTimeout = %v", ts.Config.ReadHeaderTimeout)
    		t.Logf("IdleTimeout = %v", ts.Config.IdleTimeout)
    		c := ts.Client()
    
    		get := func() (string, error) {
    			res, err := c.Get(ts.URL)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `--stop` (Standalone command)::
    Run `gradle --stop` to stop all Gradle Daemons of the same version.
    
    `-Dorg.gradle.daemon.idletimeout=(number of milliseconds)`::
    A <<build_environment.adoc#sec:gradle_configuration_properties,Gradle property>> wherein the Gradle Daemon will stop itself after this number of milliseconds of idle time. _Default is 10800000_ (3 hours).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    				},
    				Http: &networking.ConnectionPoolSettings_HTTPSettings{
    					Http1MaxPendingRequests:  2,
    					Http2MaxRequests:         11,
    					MaxRequestsPerConnection: 5,
    					MaxRetries:               4,
    					IdleTimeout:              &durationpb.Duration{Seconds: 30},
    					MaxConcurrentStreams:     5,
    				},
    			},
    			valid: true,
    		},
    
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/server.go

    		}
    		// Otherwise, this is meant for the standard HTTP server
    		s.httpMux.ServeHTTP(w, r)
    	}), h2s)
    	s.httpServer = &http.Server{
    		Addr:        args.ServerOptions.HTTPAddr,
    		Handler:     s.httpMux,
    		IdleTimeout: 90 * time.Second, // matches http.DefaultTransport keep-alive timeout
    		ReadTimeout: 30 * time.Second,
    	}
    	if multiplexGRPC {
    		// To allow the gRPC handler to make per-request decision,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/gateway-api-crd.yaml

                              type: object
                            idleTimeout:
                              description: |-
                                IdleTimeout defines the idle timeout of the persistent session.
                                Once the session has been idle for more than the specified
                                IdleTimeout duration, the session becomes invalid.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    		}
    		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))
    		}
    		if httpSettings.H2UpgradePolicy == networking.ConnectionPoolSettings_HTTPSettings_UPGRADE && httpSettings.UseClientProtocol {
    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