Home
last modified time | relevance | path

Searched refs:maxConnections (Results 1 – 25 of 471) sorted by relevance

12345678910>>...19

/dports/irc/ergo/ergo-2.8.0/irc/connection_limits/
H A Dtor.go18 maxConnections int member
22 func (tl *TorLimiter) Configure(maxConnections int, duration time.Duration, maxConnectionsPerDurati…
25 tl.maxConnections = maxConnections
34 if tl.maxConnections != 0 && tl.maxConnections <= tl.numConnections {
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Compute/
H A DCircuitBreakers.php20 public $maxConnections; variable in Google_Service_Compute_CircuitBreakers
26 public function setMaxConnections($maxConnections) argument
28 $this->maxConnections = $maxConnections;
32 return $this->maxConnections;
H A DBackend.php25 public $maxConnections; variable in Google_Service_Compute_Backend
73 public function setMaxConnections($maxConnections) argument
75 $this->maxConnections = $maxConnections;
79 return $this->maxConnections;
/dports/net/rclone/rclone-1.57.0/lib/pacer/
H A Dpacer.go36 maxConnections int // Maximum number of concurrent connections member
60 func MaxConnectionsOption(maxConnections int) Option {
61 return func(p *pacerOptions) { p.maxConnections = maxConnections }
78 maxConnections: 10,
95 p.SetMaxConnections(p.maxConnections)
110 p.maxConnections = n
160 if p.maxConnections > 0 {
178 if p.maxConnections > 0 {
/dports/www/aria2/aria2-1.36.0/src/
H A DMetalinkParserStateV3Impl.cc117 int maxConnections; in beginElement() local
120 maxConnections = -1; in beginElement()
125 maxConnections <= 0) { in beginElement()
126 maxConnections = -1; in beginElement()
129 psm->setMaxConnectionsOfEntry(maxConnections); in beginElement()
361 int maxConnections; in beginElement() local
365 maxConnections = -1; in beginElement()
368 maxConnections, in beginElement()
370 maxConnections <= 0) { in beginElement()
371 maxConnections = -1; in beginElement()
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Compute/
H A DBackend.php24 public $maxConnections; variable in Google_Service_Compute_Backend
64 public function setMaxConnections($maxConnections) argument
66 $this->maxConnections = $maxConnections;
70 return $this->maxConnections;
/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-base/src/main/java/org/apache/guacamole/auth/jdbc/connectiongroup/
H A DConnectionGroupModel.java48 private Integer maxConnections; field in ConnectionGroupModel
133 return maxConnections; in getMaxConnections()
145 public void setMaxConnections(Integer maxConnections) { in setMaxConnections() argument
146 this.maxConnections = maxConnections; in setMaxConnections()
/dports/print/texlive-base/texlive-20150521-source/texk/texlive/linked_scripts/ulqda/
H A Dulqda.pl156 $maxConnections = 0; $minConnections=65535;
169 if ($codes{$i} > $maxConnections) { $maxConnections = $codes{$i} }
215 $fontSize = 15 + ((60 * $codes{$i})/$maxConnections);
265 $len=0.25+(0.75*$codes{$previous_code}/$maxConnections);
266 $w=0.25+(0.75*$codes{$previous_code}/$maxConnections);
/dports/devel/raknet/raknet-3.9.2_10,1/Samples/Tests/
H A DMaximumConnectTest.cpp33 const int maxConnections=4;//Max allowed connections for test in RunTest() local
46 peerList[i]->Startup(maxConnections, 30, &SocketDescriptor(60000+i,0), 1); in RunTest()
47 peerList[i]->SetMaximumIncomingConnections(maxConnections); in RunTest()
50 if (connReturn!=maxConnections) in RunTest()
54 …wrong for peer %i, %i should be the value but the value is %i.Fail\n",i,maxConnections,connReturn); in RunTest()
176 if (connNum>maxConnections)//Did we connect to more? in RunTest()
/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-base/src/main/java/org/apache/guacamole/auth/jdbc/connection/
H A DConnectionModel.java49 private Integer maxConnections; field in ConnectionModel
159 return maxConnections; in getMaxConnections()
171 public void setMaxConnections(Integer maxConnections) { in setMaxConnections() argument
172 this.maxConnections = maxConnections; in setMaxConnections()
/dports/net/traefik/traefik-2.6.1/vendor/github.com/vulcand/oxy/connlimit/
H A Dconnlimit.go19 maxConnections int64 member
28 func New(next http.Handler, extract utils.SourceExtractor, maxConnections int64, options ...ConnLim…
35 maxConnections: maxConnections,
92 if connections >= cl.maxConnections {
93 return &MaxConnError{max: cl.maxConnections}
/dports/net-im/openfire/Openfire-4.7.1/xmppserver/src/main/java/org/jivesoftware/database/
H A DDefaultConnectionProvider.java48 private int maxConnections = 10; field in DefaultConnectionProvider
121 poolConfig.setMaxTotal(maxConnections); in start()
254 return maxConnections; in getMaxConnections()
264 public void setMaxConnections(int maxConnections) { in setMaxConnections() argument
265 this.maxConnections = maxConnections; in setMaxConnections()
423 maxConnections = Integer.parseInt(maxCons); in loadProperties()
453 …lobals.setXMLProperty("database.defaultProvider.maxConnections", Integer.toString(maxConnections)); in saveProperties()
/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/main/java/com/servingxml/components/sql/
H A DJdbcConnectionPoolAssembler.java47 private int maxConnections = Integer.MAX_VALUE; field in JdbcConnectionPoolAssembler
71 public void setMaxConnections(int maxConnections) { in setMaxConnections() argument
72 this.maxConnections = maxConnections; in setMaxConnections()
105 userValue, passwordValue, minConnections, maxConnections, testStatement, commands); in assemble()
H A DDefaultJdbcConnectionPool.java45 private final int maxConnections; field in DefaultJdbcConnectionPool
52 int minConnections, int maxConnections, String testStatement, in DefaultJdbcConnectionPool() argument
60 this.maxConnections = maxConnections; in DefaultJdbcConnectionPool()
123 if (connectionList.size() < maxConnections) { in releaseConnection()
/dports/databases/sqlclient/SQLClient-1.8.1/
H A DSQLClientPool.m119 max: (int)maxConnections
127 [self setMax: maxConnections min: minConnections];
132 - (int) maxConnections
343 if (maxConnections > 100) maxConnections = 100;
344 if (minConnections > maxConnections) minConnections = maxConnections;
348 if (maxConnections != max)
354 while (max > maxConnections)
364 u = realloc(u, maxConnections * sizeof(BOOL));
369 u = calloc(maxConnections, sizeof(BOOL));
371 for (index = max; index < maxConnections; index++)
[all …]
/dports/net-im/openfire/Openfire-4.7.1/xmppserver/src/main/webapp/setup/
H A Dsetup-datasource-standard.jsp35 int maxConnections = ParamUtils.getIntParameter(request,"maxConnections",-1);
81 if (maxConnections < minConnections) {
100 conProvider.setMaxConnections(maxConnections);
114 JiveGlobals.setXMLProperty("database.defaultProvider.maxConnections",
115 Integer.toString(maxConnections));
148 maxConnections = Integer.parseInt(
152 maxConnections = 25;
169 pageContext.setAttribute( "maxConnections", maxConnections );
336 …e="maxConnections" id="maxConnections" size="5" maxlength="5" value="${fn:escapeXml(not empty maxC…
338 <c:if test="${not empty errors['maxConnections']}">
[all …]
/dports/databases/libzdb/libzdb-3.2.2/src/db/
H A DConnectionPool.c62 int maxConnections; member
161 P->maxConnections = SQL_DEFAULT_MAX_CONNECTIONS; in ConnectionPool_new()
209 void ConnectionPool_setMaxConnections(T P, int maxConnections) { in ConnectionPool_setMaxConnections() argument
211 assert(P->initialConnections <= maxConnections); in ConnectionPool_setMaxConnections()
214 P->maxConnections = maxConnections; in ConnectionPool_setMaxConnections()
222 return P->maxConnections; in ConnectionPool_getMaxConnections()
336 if (size < P->maxConnections) { in ConnectionPool_getConnection()
/dports/security/vault/vault-1.8.2/vendor/github.com/joyent/triton-go/vendor/github.com/jackc/pgx/
H A Dconn_pool_test.go27 for i := 0; i < maxConnections; i++ {
101 maxConnections := 2
104 pool := createConnPool(t, maxConnections)
180 maxConnections := 3
183 MaxConnections: maxConnections,
203 wg.Add(maxConnections)
206 for i := 0; i < maxConnections; i++ {
292 maxConnections := 1
293 pool := createConnPool(t, maxConnections)
379 maxConnections := 3
[all …]
H A Dconn_pool.go26 maxConnections int member
55 p.maxConnections = config.MaxConnections
56 if p.maxConnections == 0 {
57 p.maxConnections = 5
59 if p.maxConnections < 1 {
80 p.allConnections = make([]*Conn, 0, p.maxConnections)
81 p.availableConnections = make([]*Conn, 0, p.maxConnections)
147 if len(p.allConnections)+p.inProgressConnects < p.maxConnections {
165 …en(p.availableConnections) == 0 && len(p.allConnections)+p.inProgressConnects == p.maxConnections {
282 s.MaxConnections = p.maxConnections
/dports/security/vault/vault-1.8.2/vendor/github.com/jackc/pgx/
H A Dconn_pool_test.go27 for i := 0; i < maxConnections; i++ {
101 maxConnections := 2
104 pool := createConnPool(t, maxConnections)
180 maxConnections := 3
183 MaxConnections: maxConnections,
203 wg.Add(maxConnections)
206 for i := 0; i < maxConnections; i++ {
292 maxConnections := 1
293 pool := createConnPool(t, maxConnections)
379 maxConnections := 3
[all …]
H A Dconn_pool.go27 maxConnections int member
62 p.maxConnections = config.MaxConnections
63 if p.maxConnections == 0 {
64 p.maxConnections = 5
66 if p.maxConnections < 1 {
87 p.allConnections = make([]*Conn, 0, p.maxConnections)
88 p.availableConnections = make([]*Conn, 0, p.maxConnections)
158 if len(p.allConnections)+p.inProgressConnects < p.maxConnections {
176 …en(p.availableConnections) == 0 && len(p.allConnections)+p.inProgressConnects == p.maxConnections {
293 s.MaxConnections = p.maxConnections
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/jackc/pgx/
H A Dconn_pool_test.go27 for i := 0; i < maxConnections; i++ {
101 maxConnections := 2
104 pool := createConnPool(t, maxConnections)
180 maxConnections := 3
183 MaxConnections: maxConnections,
203 wg.Add(maxConnections)
206 for i := 0; i < maxConnections; i++ {
292 maxConnections := 1
293 pool := createConnPool(t, maxConnections)
379 maxConnections := 3
[all …]
H A Dconn_pool.go26 maxConnections int member
55 p.maxConnections = config.MaxConnections
56 if p.maxConnections == 0 {
57 p.maxConnections = 5
59 if p.maxConnections < 1 {
80 p.allConnections = make([]*Conn, 0, p.maxConnections)
81 p.availableConnections = make([]*Conn, 0, p.maxConnections)
147 if len(p.allConnections)+p.inProgressConnects < p.maxConnections {
165 …en(p.availableConnections) == 0 && len(p.allConnections)+p.inProgressConnects == p.maxConnections {
282 s.MaxConnections = p.maxConnections
/dports/games/brumbrumrally/brumbrumrally-0.7/src/
H A DNetworkSettingsMenu.cpp48 maxConnections(Settings::network.maxConnections), in NetworkSettingsMenu()
61 menu.addItem("Max connections", &maxConnections, 1, 1000); in NetworkSettingsMenu()
98 Settings::network.maxConnections = maxConnections; in onEvent()
/dports/net/kget/kget-21.12.3/core/
H A Djobqueue.cpp74 const int maxConnections = Settings::maxConnections(); in maxSimultaneousJobs() local
75 return (maxConnections ? maxConnections : 1000);// High value just to indicate no limit in maxSimultaneousJobs()

12345678910>>...19