Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 97 for rerun (0.31 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

        @Rule
        public final TestResources resources = new TestResources(temporaryFolder)
        def version = GradleVersion.current().version
        def builtInOptions = """
         --rerun     Causes the task to be re-run even if up-to-date.
    """.readLines().tail().join("\n")
    
        def "shows help message when tasks #tasks run in a directory with no build definition present"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            when:
            succeeds "b"
    
            then:
            result.assertTasksSkipped(":a", ":b")
    
            // Run with --rerun-tasks command-line options
            when:
            succeeds "b", "--rerun-tasks"
    
            then:
            result.assertTasksNotSkipped(":a", ":b")
    
            // Output files already exist before using this version of Gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. cni/pkg/install/install.go

    	}
    	installLog.Info("Installation succeed, start watching for re-installation.")
    
    	for {
    		// if sleepWatchInstall yields without error, that means the config might have been modified in some fashion.
    		// so we rerun `install`, which will update the modified config if it has fallen out of sync with
    		// our desired state
    		err := in.sleepWatchInstall(ctx, installedBins)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

                         swift-library
    
         --use-defaults     Use default values for options not configured explicitly
    
         --no-use-defaults     Disables option --use-defaults.
    
         --rerun     Causes the task to be re-run even if up-to-date.
    
    Description""") // include the next header to make sure all options are listed
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. pkg/util/async/bounded_frequency_runner_test.go

    	waitForRun("fifth run", t, timer, obj)
    
    	// Retry was cancelled because we already ran
    	timer.advance(4 * time.Second) // rel=4s since run, 5s since RetryAfter
    	waitForNothing("retry cancelled", t, timer, obj)
    
    	// Rerun happens after maxInterval
    	timer.advance(5 * time.Second) // rel=9s since run, 10s since RetryAfter
    	waitForNothing("premature", t, timer, obj)
    	timer.advance(time.Second) // rel=10s since run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

            succeeds ':resolvableConfigurations'
            reportsCompleteAbsenceOfResolvableConfigurations()
        }
    
        def "if only legacy configuration present, and --all not specified, task produces empty report and prompts for rerun"() {
            given:
            buildFile << """
                configurations.create("legacy") {
                    description = "My legacy configuration"
                    assert canBeResolved
                    assert canBeConsumed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. pkg/kubelet/util/manager/watch_based_manager_test.go

    	// Reflector should already be stopped for maxIdleTime exceeded.
    	assert.False(t, reflectorRunning())
    
    	obj, _ = store.Get("ns", "name")
    	assert.True(t, apiequality.Semantic.DeepEqual(secret, obj))
    	// Reflector should reRun after get secret again.
    	assert.True(t, reflectorRunning())
    
    	fakeClock.Step(20 * time.Second)
    	_, _ = store.Get("ns", "name")
    	fakeClock.Step(20 * time.Second)
    	_, _ = store.Get("ns", "name")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 10:05:43 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    ----
    
    Gradle won't print more output to the console if all tests passed successfully.
    You can find the test reports in the `<subproject>/build/reports` folders.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                }
    
                task custom(type: CustomTask) {
                    outputFile = file("output.txt")
                }
            """
    
            expect:
            2.times {
                succeeds "custom", "--rerun-tasks"
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/2293")
        def "detects a cycle with a task that mustRunAfter itself as finalizer of another task"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

            }
        }
    
        public static class RerunTasksOption extends EnabledOnlyBooleanBuildOption<StartParameterInternal> {
            public RerunTasksOption() {
                super(null, CommandLineOptionConfiguration.create("rerun-tasks", "Ignore previously cached task results."));
            }
    
            @Override
            public void applyTo(StartParameterInternal settings, Origin origin) {
                settings.setRerunTasks(true);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top