Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for jetty11 (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java

    /**
     */
    class DefaultExceptionHandlerTest {
        /**
         * Running Maven under JDK7 may cause connection issues because IPv6 is used by default.
         * <p>
         * e.g running mvn site:run will cause Jetty to fail.
         * </p>
         * <p>
         * The resolution is to add -Djava.net.preferIPv4Stack=true to the command line as documented in
         * http://cwiki.apache.org/confluence/display/MAVEN/ConnectException
         * </p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheRequestHeadersIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.http.internal
    
    import org.eclipse.jetty.servlet.FilterHolder
    import org.gradle.util.GradleVersion
    
    import javax.servlet.DispatcherType
    import javax.servlet.Filter
    import javax.servlet.FilterChain
    import javax.servlet.FilterConfig
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractHttpsRepoResolveIntegrationTest.groovy

            keyStore = TestKeyStore.init(resources.dir)
            keyStore.enableSslWithServerCert(server)
    
            setupBuildFile(repoType)
    
            when:
            executer.withStackTraceChecksDisabled() // Jetty logs stuff to console
            keyStore.configureIncorrectServerCert(executer)
            fails "libs"
    
            then:
            failure.assertHasCause("Could not GET '${server.uri}/repo1/my-group/my-module/1.0/")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/build.gradle.kts

        integTestImplementation(project(":logging"))
        integTestImplementation(libs.commonsIo)
        integTestImplementation(libs.groovyXml)
        integTestImplementation(libs.littleproxy)
        integTestImplementation(libs.jetty)
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    
    dependencyAnalysis {
        issues {
            onUnusedDependencies() {
                // This need to exist to be loaded reflectively
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/TaskSegment.java

     *
     * @since 3.0
     */
    public final class TaskSegment {
    
        // Can be both "LifeCycleTask" (clean/install) and "GoalTask" (org.mortbay.jetty:maven-jetty-plugin:6.1.19:run)
    
        private final List<Task> tasks;
    
        private final boolean aggregating;
    
        public TaskSegment(boolean aggregating) {
            this.aggregating = aggregating;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/build.gradle.kts

        implementation(libs.slf4jApi)
    
        compileOnly(libs.javaParser) {
            because("The Groovy compiler inspects the dependencies at compile time")
        }
    
        runtimeOnly(libs.jclToSlf4j)
        runtimeOnly(libs.jetty)
        runtimeOnly(libs.mySqlConnector)
    
        integTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    val reportResources = tasks.register<Copy>("reportResources") {
        from(reports)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top