- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 544 for conventions (0.08 sec)
-
internal/grid/manager.go
BlockConnect chan struct{} // If set, incoming and outgoing connections will be blocked until closed. RoutePath string TraceTo *pubsub.PubSub[madmin.TraceInfo, madmin.TraceType] Dialer ConnDialer // Sign a token for the given audience. AuthFn AuthFn // Callbacks to validate incoming connections. AuthToken ValidateTokenFn } // NewManager creates a new grid manager
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/resources/my_creator.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <include path="convention.xml"/> <component name="pagerCreator" class="org.codelibs.fess.mylasta.creator.PagerCreator"/>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 03 14:03:30 UTC 2015 - 296 bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Address.kt
import okhttp3.internal.toImmutableList /** * A specification for a connection to an origin server. For simple connections, this is the * server's hostname and port. If an explicit proxy is requested (or [no proxy][Proxy.NO_PROXY] is * explicitly requested), this also includes that proxy information. For secure connections the * address also includes the SSL socket factory, hostname verifier, and certificate pinner. *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/env/thumbnail/resources/app.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <include path="convention.xml" /> <include path="lastaflute_core.xml"/> <include path="fess.xml" /> <include path="crawler_es.xml" /> <include path="fess_thumbnail.xml"/>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Feb 12 13:38:57 UTC 2018 - 348 bytes - Viewed (0) -
internal/grid/README.md
## Setup & Configuration A **Manager** is used to manage all incoming and outgoing connections to a server. On startup all remote servers must be specified. From that individual connections will be spawned to each remote server, or incoming requests will be hooked up to the appropriate connection.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 9.4K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts
} tasks.withType<KotlinCompile>().configureEach { compilerOptions { allWarningsAsErrors = true } } detekt { // overwrite the config file's location config.convention(project.isolated.rootProject.projectDirectory.file("../gradle/detekt.yml")) } tasks.named("codeQuality") { dependsOn("detekt") } tasks.validatePlugins { failOnWarning = true
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 1.7K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/api.go
ValidFrom string `json:"validFrom"` ExpirationTime string `json:"expirationTime"` } type WorkloadState struct { State string `json:"state,omitempty"` Connections WorkloadConnections `json:"connections,omitempty"` Info WorkloadInfo `json:"info"` } type WorkloadConnections struct { Inbound []InboundConnection `json:"inbound"` Outbound []OutboundConnection `json:"outbound"`
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 30 17:26:39 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * Property <tt>jcifs.smb.client.lport</tt> (int) * * @return local port to use for outgoing connections */ int getLocalPort (); /** * * Property <tt>jcifs.smb.client.laddr</tt> (string) * * @return local address to use for outgoing connections */ InetAddress getLocalAddr (); /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt
maxIdleConnections = 2, ) val c1 = factory.newConnection(pool, routeA1, 50L) val c2 = factory.newConnection(pool, routeB1, 75L) // With 2 connections, there's no need to evict until the connections time out. assertThat(pool.closeConnections(100L)).isEqualTo(50L) assertThat(pool.connectionCount()).isEqualTo(2) assertThat(c1.socket().isClosed).isFalse()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jun 22 16:06:35 UTC 2024 - 12.8K bytes - Viewed (0) -
docs/changelogs/upgrading_to_okhttp_4.md
| ResponseBody.create(ByteString) | ByteString.toResponseBody() | | ResponseBody.create(String) | String.toResponseBody() | SAM Conversions --------------- When you use Java APIs from Kotlin you can operate on Java interfaces as if they were Kotlin lambdas. The [feature][java_sams] is available for interfaces that define a Single Abstract Method (SAM).
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 16:58:16 UTC 2022 - 10.9K bytes - Viewed (0)