Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,944 for connections (0.17 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

      private var trailers: Headers? = null
    
      /** Returns true if this connection is closed. */
      val isClosed: Boolean
        get() = state == STATE_CLOSED
    
      override fun createRequestBody(
        request: Request,
        contentLength: Long,
      ): Sink {
        return when {
          request.body?.isDuplex() == true -> throw ProtocolException(
            "Duplex connections are not supported for HTTP/1",
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server.go

    	fs.DurationVar(&o.config.IPVS.TCPTimeout.Duration, "ipvs-tcp-timeout", o.config.IPVS.TCPTimeout.Duration, "The timeout for idle IPVS TCP connections, 0 to leave as-is. (e.g. '5s', '1m', '2h22m').")
    	fs.DurationVar(&o.config.IPVS.TCPFinTimeout.Duration, "ipvs-tcpfin-timeout", o.config.IPVS.TCPFinTimeout.Duration, "The timeout for IPVS TCP connections after receiving a FIN packet, 0 to leave as-is. (e.g. '5s', '1m', '2h22m').")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/graceful_termination.go

    			//     (existing connections will be deleted on the next packet because sysctlExpireNoDestConn=1)
    			// For other protocols, don't delete until all connections have expired)
    			if utilipvs.IsRsGracefulTerminationNeeded(rsToDelete.VirtualServer.Protocol) && rs.ActiveConn+rs.InactiveConn != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonTcpServerConnector.java

                if (started) {
                    throw new IllegalStateException("server connector cannot be started as it has already been started");
                }
    
                // Hold the lock until we actually start accepting connections for the case when stop is called from another
                // thread while we are in the middle here.
    
                Action<ConnectCompletion> connectEvent = new Action<ConnectCompletion>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    		// HTTP2 has a mechanism to detect broken connections by sending periodical pings.
    		// HTTP1 only can have one persistent connection, and it will close all Idle connections
    		// once the Kubelet heartbeat fails. However, since there are many edge cases that we can't
    		// control, users can still opt-in to the previous behavior for closing the connections by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SocksProxyServer.groovy

     * starting the proxy.
     *
     * Use {@link #start(SocksServer)} to start the proxy with an alternate implementation of {@link SocksServer} (for instance,
     * a {@link TestRecordingSocksServer}, which can record connections which would have been made).
     */
    class SocksProxyServer extends ExternalResource {
        private PortAllocator portFinder = FixedAvailablePortAllocator.getInstance()
        private SocksServer socksServer
        private int port
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tools/packaging/postinst.sh

    chmod o+rx /usr/local/bin/{envoy,pilot-agent}
    
    # pilot-agent and envoy may run with effective uid 0 in order to run envoy with
    # CAP_NET_ADMIN, so any iptables rule matching on "-m owner --uid-owner
    # istio-proxy" will not match connections from those processes anymore.
    # Instead, rely on the process's effective gid being istio-proxy and create a
    # "-m owner --gid-owner istio-proxy" iptables rule in istio-iptables.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 10 18:31:12 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/verifier/HttpRedirectVerifierFactory.java

         * the user has explicitly opted out from this protection.
         *
         * @param baseHost The host specified by the user.
         * @param allowInsecureProtocol If true, allows HTTP based connections.
         * @param insecureBaseHost Callback when the base host URL is insecure.
         * @param insecureRedirect Callback when the server returns an 30x redirect to an insecure server.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. pkg/test/echo/common/dialer.go

    // TCPDialFunc a function for establishing a TCP connection.
    type TCPDialFunc func(dialer net.Dialer, ctx context.Context, address string) (net.Conn, error)
    
    // Dialer is a replaceable set of functions for creating client-side connections for various protocols, allowing a test
    // application to intercept the connection creation.
    type Dialer struct {
    	GRPC      GRPCDialFunc
    	Websocket WebsocketDialFunc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 07 15:55:42 UTC 2020
    - 3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/GraphConnections.java

      /**
       * Returns an iterator over the incident edges.
       *
       * @param thisNode The node that this all of the connections in this class are connected to.
       */
      Iterator<EndpointPair<N>> incidentEdgeIterator(N thisNode);
    
      /**
       * Returns the value associated with the edge connecting the origin node to {@code node}, or null
       * if there is no such edge.
       */
      @CheckForNull
      V value(N node);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.4K bytes
    - Viewed (0)
Back to top