Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for interference (0.12 sec)

  1. src/cmd/go/testdata/script/cgo_stale.txt

    # cached with the new flag, but not installed to GOROOT.
    # It has no install target, and thus is never stale.
    
    env GOCACHE=$WORK/cache  # Use a fresh cache to avoid interference between runs.
    
    go build -x .
    stderr '[/\\]cgo'$GOEXE'["]? .* -importpath runtime/cgo'
    ! stale runtime/cgo
    
    
    # After runtime/cgo has been rebuilt and cached, it should not be rebuilt again.
    
    go build -x .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 22:43:41 UTC 2022
    - 888 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

        def setup() {
            def quietPeriod = OperatingSystem.current().isMacOsX() ? 2000 : 250
            waitAtEndOfBuildForQuietPeriod(quietPeriod)
        }
    
        @UnsupportedWithConfigurationCache(because = "Spock interceptor interference")
        def "should trigger rebuild when java source file is changed during build execution"() {
            given:
            def inputFile = file("src/main/java/Thing.java")
            inputFile << "class Thing {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

                    }
                }
            """
    
            when:
            server.expectConcurrent("log1", "log2", "log3")
            executer.withArgument("--parallel")
            // run build in another process to avoid interference from logging from test fixtures
            result = executer.withTasks("log").start().waitForFinish()
    
            then:
            result.groupedOutput.taskCount == 3
            if (errorsShouldAppearOnStdout()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. pkg/cache/cache_test.go

    		{Set, "X", "12", false, Stats{Misses: 1, Writes: 1}},
    		{Get, "X", "12", true, Stats{Misses: 1, Writes: 1, Hits: 1}},
    		{Get, "X", "12", true, Stats{Misses: 1, Writes: 1, Hits: 2}},
    
    		// check interference between get/set
    		{Get, "Y", "", false, Stats{Misses: 2, Writes: 1, Hits: 2}},
    		{Set, "X", "23", false, Stats{Misses: 2, Writes: 2, Hits: 2}},
    		{Get, "X", "23", true, Stats{Misses: 2, Writes: 2, Hits: 3}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top