Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for idletimeout (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DefaultDaemonServerConfiguration.java

            // The daemon that shouldn't use the agent won't have the agent applied.
            this(daemonUid, daemonBaseDir, idleTimeoutMs, periodicCheckIntervalMs, singleUse, priority, jvmOptions, true, nativeServicesMode);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/ForegroundDaemonConfiguration.java

            // Foreground daemon cannot be 'told' what's his startup options as the client sits in the same process so we will infer the jvm opts from the inputArguments()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. releasenotes/notes/add-idle-timeout-to-destination-rule-tcp-settings.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 15:18:18 UTC 2023
    - 189 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Server.ConnContext", Field, 13},
    		{"Server.ConnState", Field, 3},
    		{"Server.DisableGeneralOptionsHandler", Field, 20},
    		{"Server.ErrorLog", Field, 3},
    		{"Server.Handler", Field, 0},
    		{"Server.IdleTimeout", Field, 8},
    		{"Server.MaxHeaderBytes", Field, 0},
    		{"Server.ReadHeaderTimeout", Field, 8},
    		{"Server.ReadTimeout", Field, 0},
    		{"Server.TLSConfig", Field, 0},
    		{"Server.TLSNextProto", Field, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top