Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for idletimeout (0.24 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. 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)
  3. 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 (1)
  4. 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)
  5. 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)
  6. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            }
    
            // Read configuration from stdin
            List<String> startupOpts;
            File gradleHomeDir;
            File daemonBaseDir;
            int idleTimeoutMs;
            int periodicCheckIntervalMs;
            boolean singleUse;
            NativeServicesMode nativeServicesMode;
            String daemonUid;
            DaemonParameters.Priority priority;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. tests/integration/helm/util.go

              "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager"
              xff_num_trusted_hops: 5
              common_http_protocol_options:
                idle_timeout: 30s
    `
    
    	revisionedSampleEnvoyFilter = `
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: sample
      labels:
        istio.io/rev: %s
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top