Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for netty (0.05 sec)

  1. testing/soak/build.gradle.kts

        integTestImplementation(project(":persistent-cache"))
        integTestImplementation(libs.commonsCompress)
        integTestImplementation(libs.slf4jApi)
        integTestImplementation(libs.jetty)
        integTestImplementation(libs.assertj) {
            because("Kotlin soak tests use AssertJ")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    tasks.register("soakTest") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/build.gradle.kts

        testImplementation(libs.servletApi)
    
        integTestImplementation(project(":enterprise-operations"))
        integTestImplementation(testFixtures(project(":build-cache")))
        integTestImplementation(libs.jetty)
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Uses application plugin.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpsIntegTest.groovy

            keyStore.enableSslWithServerCert(server)
            initBuild()
    
            when:
            keyStore.configureIncorrectServerCert(executer)
            executer.withStackTraceChecksDisabled() // Jetty logs stuff to console
            fails 'publish'
    
            then:
            failure.assertHasCause("Failed to publish publication 'maven' to repository 'maven'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/software/resources-sftp/build.gradle.kts

        testImplementation(testFixtures(project(":ivy")))
        testImplementation(testFixtures(project(":maven")))
    
        integTestImplementation(project(":logging"))
        integTestImplementation(libs.jetty)
        integTestImplementation(libs.sshdCore)
        integTestImplementation(libs.sshdScp)
        integTestImplementation(libs.sshdSftp)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. testing/performance/build.gradle.kts

        performanceTestImplementation(libs.junit)
        performanceTestImplementation(libs.servletApi)
    
        performanceTestRuntimeOnly(project(":core-api"))
        performanceTestRuntimeOnly(libs.jetty)
    
        performanceTestDistributionRuntimeOnly(project(":distributions-full")) {
            because("All Gradle features have to be available.")
        }
        performanceTestLocalRepository(project(":tooling-api")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/security/build.gradle.kts

        testImplementation(testFixtures(project(":core")))
    
        testFixturesImplementation(project(":base-services"))
        testFixturesImplementation(libs.slf4jApi)
        testFixturesImplementation(libs.jetty)
        testFixturesImplementation(libs.jettyWebApp)
        testFixturesImplementation(testFixtures(project(":core")))
        testFixturesImplementation(project(":internal-integ-testing"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/RestFilter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.test.fixtures.server.http;
    
    import org.eclipse.jetty.util.IO;
    import org.eclipse.jetty.util.URIUtil;
    
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/decompose_hybrid_quantization.cc

        for (auto operand : op->getOperands()) {
          if (QuantizedType::getQuantizedElementType(operand.getType())) {
            auto newTy = QuantizedType::castToExpressedType(operand.getType());
            newOperands.push_back(
                rewriter.create<TFL::DequantizeOp>(loc, newTy, operand));
            continue;
          }
    
          newOperands.push_back(operand);
        }
    
        SmallVector<Type> newResultTys;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. buildSrc/src/main/kotlin/AlpnVersions.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    // https://www.eclipse.org/jetty/documentation/current/alpn-chapter.html#alpn-versions
    private fun alpnBootVersionForPatchVersion(patchVersion: Int): String? {
      return when (patchVersion) {
        in 0..24 -> "8.1.0.v20141016"
        in 25..30 -> "8.1.2.v20141202"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. module.xml

    		</antcall>
    		<!-- transport-netty4 -->
    		<antcall target="install.module">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="module.groupId" value="org/codelibs/opensearch/module" />
    			<param name="module.name.prefix" value="" />
    			<param name="module.name" value="transport-netty4" />
    			<param name="module.version" value="${opensearch.version}" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 16 07:10:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top