OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:maxidleconnections
(Results
1 - 1
of
1
) sorted by null
/external/okhttp/src/main/java/com/squareup/okhttp/
ConnectionPool.java
64
String
maxIdleConnections
= System.getProperty("http.maxConnections");
69
} else if (
maxIdleConnections
!= null) {
70
systemDefault = new ConnectionPool(Integer.parseInt(
maxIdleConnections
), keepAliveDurationMs);
77
private final int
maxIdleConnections
;
104
i.hasPrevious() && idleConnectionCount >
maxIdleConnections
; ) {
120
public ConnectionPool(int
maxIdleConnections
, long keepAliveDurationMs) {
121
this.
maxIdleConnections
=
maxIdleConnections
;
Completed in 142 milliseconds