Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 97 for rerun (0.18 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/projectReports/tests/taskHelp.out

    Detailed task information for libs
    
    Paths
         :api:libs
         :webapp:libs
    
    Type
         Task (org.gradle.api.Task)
    
    Options
         --rerun     Causes the task to be re-run even if up-to-date.
    
    Description
         Builds the JAR
    
    Group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 239 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/commandLineOption-optionValues/tests/helpTaskOptions.out

                           Available values are:
                                CONSOLE
                                FILE
    
         --url     Configures the URL to send the request to.
    
         --rerun     Causes the task to be re-run even if up-to-date.
    
    Description
         -
    
    Group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

    class RerunFlakyTest(os: Os, arch: Arch = Arch.AMD64) : BuildType({
        val id = "Util_RerunFlakyTest${os.asName()}${arch.asName()}"
        name = "Rerun Flaky Test - ${os.asName()} ${arch.asName()}"
        description = "Allows you to rerun a selected flaky test 10 times"
        id(id)
        val testJvmVendorParameter = "testJavaVendor"
        val testJvmVersionParameter = "testJavaVersion"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/writing-tasks/task-with-arguments/tests/help.out

    Options
         --format     Output format of the project information.
                      Available values are:
                           JSON
                           PLAIN
    
         --rerun     Causes the task to be re-run even if up-to-date.
    
    Description
         Displays current project info
    
    Group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 421 bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationIntegrationTest.groovy

            'Exec'           | 'execTask'
            'project.exec'   | 'projectExecTask'
            'JavaExec'       | 'javaExec'
            'blocking tasks' | 'blockingCustomTask'
        }
    
        def "task gets rerun after cancellation when buildcache = #buildCacheEnabled and ignoreExitValue = #ignoreExitValue"() {
            given:
            file('outputFile') << ''
            blockCode()
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 04:31:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            outputContains("Groovy compilation avoidance is an incubating feature")
    
            when:
            configurationCacheRun("compileGroovy", "--rerun-tasks")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Groovy compilation avoidance is an incubating feature")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/printers/jsonpath_test.go

    			if expectedErrors.Has(oName) {
    				// expected error
    				continue
    			}
    			t.Errorf("JSONPathPrinter error object '%v'; error: '%v'", oName, err)
    		}
    	}
    
    	// rerun tests with JSONOutput enabled
    	jsonpathPrinter.EnableJSONOutput(true)
    
    	for oName, obj := range objects {
    		b := &bytes.Buffer{}
    		if err := jsonpathPrinter.PrintObj(obj, b); err != nil {
    			if expectedErrors.Has(oName) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 15 21:58:20 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProvider.java

        }
    
        @Override
        protected TreeSet<PerformanceReportScenario> queryExecutionData(List<PerformanceTestExecutionResult> scenarioExecutions) {
            // scenarioExecutions contains duplicate scenarios because of rerun
            return scenarioExecutions.stream()
                .collect(groupingBy(PerformanceTestExecutionResult::getPerformanceExperiment))
                .values()
                .stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/IncrementalJavaProjectBuildIntegrationTest.groovy

            jar.assertHasNotChangedSince(snapshot);
    
            sleep 1000 // Some filesystems (ext3) have one-second granularity for lastModified, so bump the time to ensure we can detect a regenerated file
            executer.withArguments("--rerun-tasks").withTasks("jar").run();
    
            jar.assertHasChangedSince(snapshot);
            snapshot = jar.snapshot();
    
            executer.withTasks("jar").run();
            jar.assertHasNotChangedSince(snapshot);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionModeResolverTest.groovy

            then:
            state == DefaultTaskExecutionMode.incremental()
            1 * taskProperties.hasDeclaredOutputs() >> true
            1 * upToDateSpec.isSatisfiedBy(task) >> true
            0 * _
        }
    
        def "--rerun-tasks enabled"() {
            when:
            startParameter.setRerunTasks(true)
            def state = repository.getExecutionMode(task, taskProperties)
    
            then:
            state == DefaultTaskExecutionMode.rerunTasksEnabled()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top