Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for jetty11 (0.1 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpsIntegTest.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 'ivy' to repository 'ivy'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/build.gradle.kts

        testImplementation(libs.groovy)
    
        integTestImplementation(project(":core-api"))
        integTestImplementation(project(":model-core"))
    
        integTestImplementation(libs.commonsIo)
        integTestImplementation(libs.jetty)
        integTestImplementation(libs.joda)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    strictCompile {
        ignoreDeprecations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top