Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for jetty11 (0.26 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

                    (line.contains("java.rmi.UnmarshalException") ||
                        line.contains("java.io.EOFException")) ||
                    // Verbose logging by Jetty when connector is shutdown
                    // https://github.com/eclipse/jetty.project/issues/3529
                    line.contains("java.nio.channels.CancelledKeyException")) {
                    i++;
                    i = skipStackTrace(lines, i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. fess-crawler/pom.xml

    			<artifactId>utflute-core</artifactId>
    			<version>${utflute.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.mortbay.jetty</groupId>
    			<artifactId>jetty</artifactId>
    			<version>6.1.26</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.slf4j</groupId>
    			<artifactId>slf4j-simple</artifactId>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/software/build-init/build.gradle.kts

        testFixturesImplementation(project(":test-suites-base"))
        testFixturesImplementation(project(":plugins-jvm-test-suite"))
    
        integTestImplementation(project(":native"))
        integTestImplementation(libs.jetty)
    
        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.  Toolchain usage requires JVM distribution.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ParallelDownloadsPerformanceTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.regression.corefeature
    
    import org.eclipse.jetty.webapp.WebAppContext
    import org.gradle.performance.AbstractCrossVersionPerformanceTest
    import org.gradle.performance.WithExternalRepository
    import org.gradle.performance.annotations.RunFor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/build.gradle.kts

        integTestImplementation(project(":logging"))
        integTestImplementation(project(":core-api"))
        integTestImplementation(libs.commonsIo)
        integTestImplementation(libs.littleproxy)
        integTestImplementation(libs.jetty)
    
        crossVersionTestImplementation(project(":logging"))
        crossVersionTestImplementation(project(":persistent-cache"))
        crossVersionTestImplementation(project(":launcher"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.resource.gcs.fixtures
    
    import org.eclipse.jetty.server.Request
    import org.eclipse.jetty.server.handler.AbstractHandler
    import org.gradle.integtests.resource.gcs.fixtures.stub.HttpStub
    import org.gradle.integtests.resource.gcs.fixtures.stub.StubRequest
    import org.gradle.internal.hash.Hashing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/build.gradle.kts

            because("Test fixtures export the Action class")
        }
        testFixturesApi(project(":persistent-cache")) {
            because("Test fixtures export the CacheAccess class")
        }
    
        testFixturesApi(libs.jetty)
        testFixturesImplementation(project(":core"))
        testFixturesImplementation(testFixtures(project(":core")))
        testFixturesImplementation(testFixtures(project(":resources-http")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceErrorHandlingIntegrationTest.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.server.Response
    import org.gradle.caching.internal.services.BuildCacheControllerFactory
    
    import java.util.concurrent.atomic.AtomicInteger
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/build.gradle.kts

        implementation(libs.groovyJson)
        implementation(libs.httpcore)
        implementation(libs.inject)
        implementation(libs.ivy)
        implementation(libs.jcifs)
        implementation(libs.jetty)
        implementation(libs.jettyServlet)
        implementation(libs.littleproxy)
        implementation(libs.mavenResolverSupplier) {
            because("For ApiMavenResolver. Wires together implementation for maven-resolver-api")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.keystore
    
    import groovy.transform.CompileStatic
    import org.eclipse.jetty.util.ssl.SslContextFactory
    import org.gradle.api.Action
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.integtests.fixtures.executer.GradleExecuter
    import org.gradle.internal.Actions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top