Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for _run (0.05 sec)

  1. CONTRIBUTING.md

    ```
    [MNG-XXX] - Subject of the JIRA Ticket
     Optional supplemental description.
    ```
    + Make sure you have added the necessary tests (JUnit/[Core IT tests][core-it]) for your changes.
    + Run all the tests with `mvn -Prun-its verify` to assure nothing else was accidentally broken.
    + Submit a pull request to the repository in the Apache organization.
    + Update your JIRA ticket and include a link to the pull request in the ticket.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            then:
            1 * onStartCommand.run()
            1 * command.run()
            1 * onFinishCommand.run()
            0 * _._
    
            when:
            coordinator.runCommand(command2, "command")
    
            then:
            1 * onStartCommand.run()
            1 * command2.run()
            1 * onFinishCommand.run()
            0 * _._
        }
    
        def "runs actions when command fails"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            run "run"
    
            then:
            executedAndNotSkipped ":run"
        }
    
        def "is not incremental by default"() {
            when:
            run "run"
    
            then:
            executedAndNotSkipped ":run"
    
            when:
            run "run"
    
            then:
            executedAndNotSkipped ":run"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/vet.test

    === RUN   TestVet
    === PAUSE TestVet
    === RUN   TestVetAsm
    === PAUSE TestVetAsm
    === RUN   TestVetDirs
    === PAUSE TestVetDirs
    === RUN   TestTags
    === PAUSE TestTags
    === RUN   TestVetVerbose
    === PAUSE TestVetVerbose
    === CONT  TestVet
    === CONT  TestTags
    === CONT  TestVetVerbose
    === RUN   TestTags/testtag
    === PAUSE TestTags/testtag
    === CONT  TestVetDirs
    === CONT  TestVetAsm
    === RUN   TestVet/0
    === PAUSE TestVet/0
    === RUN   TestVet/1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultPhasedBuildActionExecuterTest.groovy

        def "delegates to connection to run phased action"() {
            def handler = Mock(ResultHandler)
    
            when:
            executer.run(handler)
    
            then:
            1 * asyncConnection.run(!null, !null) >> { ConsumerAction<Void> consumerAction, ResultHandlerVersion1 adaptedHandler ->
                consumerAction.run(connection)
                adaptedHandler.onComplete(null)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerIncrementalExportIntegrationTest.groovy

            then:
            result.assertTaskSkipped(":generateSwiftPmManifest")
    
            when:
            file("app/build.gradle").text = """"""
            run("generateSwiftPmManifest")
    
            then:
            result.assertTaskNotSkipped(":generateSwiftPmManifest")
    
            when:
            run("generateSwiftPmManifest")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. pkg/util/async/bounded_frequency_runner_test.go

    	checkReceiver("init", t, obj, false)
    
    	// Run once, immediately.
    	// abs=0ms, rel=0ms
    	runner.Run()
    	waitForRun("first run", t, timer, obj)
    
    	// Run again, before minInterval expires, with burst.
    	timer.advance(1 * time.Millisecond) // abs=1ms, rel=1ms
    	runner.Run()
    	waitForRun("second run", t, timer, obj)
    
    	// Run again, before minInterval expires.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultBuildActionExecuterTest.groovy

            when:
            executer.forTasks('a', 'b').run(handler)
    
            then:
            1 * asyncConnection.run(!null, !null) >> {args ->
                ConsumerAction<GradleProject> action = args[0]
                action.run(connection)
                adaptedHandler = args[1]
            }
            1 * connection.run(action, _) >> { args ->
                ConsumerOperationParameters params = args[1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

                    mainClass = "Hello"
                }
            """
            withBuildCache().run "run"
            withBuildCache().run "clean"
            expect:
            withBuildCache().run "run"
        }
    
        def "tasks get cached when source code changes back to previous state"() {
            expect:
            withBuildCache().run "jar" assertTaskNotSkipped ":compileJava" assertTaskNotSkipped ":jar"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_cache_inputs.txt

    go test testcache -run=FileSize
    go test testcache -run=FileSize
    stdout '\(cached\)'
    
    cp 4x.txt testcache/file.txt
    go test testcache -run=FileSize
    ! stdout '\(cached\)'
    go test testcache -run=FileSize
    stdout '\(cached\)'
    
    # Files should be tracked even if the test changes its working directory.
    go test testcache -run=Chdir
    go test testcache -run=Chdir
    stdout '\(cached\)'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top