Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for netty (0.04 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

    import org.gradle.util.internal.GFileUtils
    import org.hamcrest.Matcher
    import org.eclipse.jetty.server.Handler
    import org.eclipse.jetty.http.HttpHeader
    import org.eclipse.jetty.http.HttpStatus
    import org.eclipse.jetty.http.MimeTypes
    import org.eclipse.jetty.server.Request
    import org.eclipse.jetty.server.handler.AbstractHandler
    import org.slf4j.Logger
    import org.slf4j.LoggerFactory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GrettySmokeTest.groovy

    @UnsupportedWithConfigurationCache(
        because = "The Gretty plugin does not support configuration caching"
    )
    class GrettySmokeTest extends AbstractPluginValidatingSmokeTest {
    
        def 'run Jetty with Gretty #grettyConfig.version'() {
            given:
            def grettyVersion = VersionNumber.parse(grettyConfig.version)
            useSample('gretty-example')
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/runtime/gc_test.go

    		c     chan error
    		nextx *X
    	}
    	type Y struct {
    		X
    		nexty *Y
    		p     *int
    	}
    	var head *Y
    	for i := 0; i < 10; i++ {
    		p := &Y{}
    		p.c = make(chan error)
    		if head != nil {
    			p.nextx = &head.X
    		}
    		p.nexty = head
    		p.p = new(int)
    		*p.p = 42
    		head = p
    		runtime.GC()
    	}
    	for p := head; p != nil; p = p.nexty {
    		if *p.p != 42 {
    			t.Fatal("corrupted heap")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top