Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for closeable (0.27 sec)

  1. src/net/http/transport.go

    // value is a zero-length slice, the request is treated as idempotent but the
    // header is not sent on the wire.
    type Transport struct {
    	idleMu       sync.Mutex
    	closeIdle    bool                                // user has requested to close all idle conns
    	idleConn     map[connectMethodKey][]*persistConn // most recently used at end
    	idleConnWait map[connectMethodKey]wantConnQueue  // waiting getConns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

     * directories but I hope to take care of this during the Maven 4.0 release (jvz).
     * </p>
     */
    public class MavenProject implements Cloneable {
    
        private static final Logger LOGGER = LoggerFactory.getLogger(MavenProject.class);
    
        public static final String EMPTY_PROJECT_GROUP_ID = "unknown";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	}
    	d := connrotation.NewDialer((&net.Dialer{Timeout: 30 * time.Second, KeepAlive: 30 * time.Second}).DialContext)
    	clientConfig.Dial = d.DialContext
    	return d.CloseAll, nil
    }
    
    // buildClientCertificateManager creates a certificate manager that will use certConfig to request a client certificate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top