Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for _run (0.05 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            def link = file("in.txt")
            link.createLink("other")
    
            given:
            run("work")
            run("work")
            result.assertTasksSkipped(":work")
    
            when:
            inFile.text = 'new content'
            run("work")
    
            then:
            result.assertTasksNotSkipped(":work")
    
            when:
            run("work")
    
            then:
            result.assertTasksSkipped(":work")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultBuildLauncherTest.groovy

        def "requests consumer connection run build"() {
            ResultHandler<Void> handler = Mock()
            ResultHandlerVersion1<Void> adaptedHandler
    
            when:
            launcher.run(handler)
    
            then:
            1 * asyncConnection.run(!null, !null) >> { args ->
                ConsumerAction<GradleProject> action = args[0]
                action.run(connection)
                adaptedHandler = args[1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. src/testing/sub_test.go

        `,
    		f: func(t *T) {
    			ranSeq := false
    			ranPar := false
    			t.Run("", func(t *T) {
    				t.Run("par", func(t *T) {
    					t.Parallel()
    					ranPar = true
    				})
    				t.Run("seq", func(t *T) {
    					ranSeq = true
    				})
    				t.FailNow()
    				t.Run("seq", func(t *T) {
    					realTest.Error("test must be skipped")
    				})
    				t.Run("par", func(t *T) {
    					t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskCustomTypesInputPropertyIntegrationTest.groovy

        }
    }
    
    ${customSerializableType()}
    """
    
            given:
            run "someTask"
    
            when:
            run "someTask"
    
            then:
            skipped(":someTask")
    
            // Change the build script
            when:
            buildFile << """
    task someOtherTask
    """
            and:
            run "someTask"
    
            then:
            executedAndNotSkipped(":someTask")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 22 16:04:50 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_test_cached.txt

    env GODEBUG=gocachetest=1
    
    # The first run of a test should not be cached.
    # The second run should be.
    go test -run=WriteTmp .
    ! stdout '(cached)'
    go test -run=WriteTmp .
    stdout '(cached)'
    
    # 'go test' without arguments should never be cached.
    go test -run=WriteTmp
    ! stdout '(cached)'
    go test -run=WriteTmp
    ! stdout '(cached)'
    
    # We should never cache a test run from command-line files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

        assertThat(log).containsExactly("run@100000")
    
        taskFaker.advanceUntil(150.µs)
        assertThat(log).containsExactly("run@100000", "run@150000")
    
        taskFaker.advanceUntil(299.µs)
        assertThat(log).containsExactly("run@100000", "run@150000")
    
        taskFaker.advanceUntil(300.µs)
        assertThat(log).containsExactly("run@100000", "run@150000", "run@300000")
    
        taskFaker.assertNoMoreTasks()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/testdata/vet.json

    {"Action":"run","Test":"TestVet/4"}
    {"Action":"output","Test":"TestVet/4","Output":"=== RUN   TestVet/4\n"}
    {"Action":"run","Test":"TestTags/x_testtag_y"}
    {"Action":"output","Test":"TestTags/x_testtag_y","Output":"=== RUN   TestTags/x_testtag_y\n"}
    {"Action":"output","Test":"TestVet/4","Output":"=== PAUSE TestVet/4\n"}
    {"Action":"pause","Test":"TestVet/4"}
    {"Action":"run","Test":"TestVet/5"}
    {"Action":"output","Test":"TestVet/5","Output":"=== RUN   TestVet/5\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fail_fast.txt

    [short] skip
    
    # test fail fast
    ! go test ./failfast_test.go -run='TestFailingA' -failfast=true
    stdout -count=1 'FAIL - '
    ! go test ./failfast_test.go -run='TestFailing[AB]' -failfast=true
    stdout -count=1 'FAIL - '
    ! go test ./failfast_test.go -run='TestFailing[AB]' -failfast=false
    stdout -count=2 'FAIL - '
    
    # mix with non-failing tests
    ! go test ./failfast_test.go -run='TestA|TestFailing[AB]' -failfast=true
    stdout -count=1 'FAIL - '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    go run check_testdata.go FuzzWithFail
    
    ! go test -run=FuzzWithLogFail -fuzz=FuzzWithLogFail -fuzztime=100x -fuzzminimizetime=1000x
    stdout 'testdata[/\\]fuzz[/\\]FuzzWithLogFail[/\\]'
    stdout 'logged something'
    go run check_testdata.go FuzzWithLogFail
    
    ! go test -run=FuzzWithErrorf -fuzz=FuzzWithErrorf -fuzztime=100x -fuzzminimizetime=1000x
    stdout 'testdata[/\\]fuzz[/\\]FuzzWithErrorf[/\\]'
    stdout 'errorf was called here'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/Dockerfile

    RUN wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 https://github.com/bazelbuild/buildtools/releases/download/4.2.5/buildozer-linux-arm64 -O /usr/local/bin/buildozer && chmod +x /usr/local/bin/buildozer
    
    RUN groupadd -g 1001 buildslave && useradd -m -u 1001 -g buildslave buildslave
    RUN mkdir -p /tf/venv
    RUN chown -R buildslave:buildslave /tf
    RUN dpkg -i /patchelf/patchelf_0.14.3-1_arm64.deb
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 09:32:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top