Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for rerun (0.52 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

            writeAllFiles()
    
            expect:
            2.times {
                server.expectConcurrent(generateFoo.path, exec.path)
    
                args '--parallel', '--max-workers=2', '--rerun-tasks' // add --rerun-tasks so that tasks are not up-to-date on second invocation
                succeeds(generateFoo.path, exec.path)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TaskBooleanOptionIntegrationTest.groovy

         --propertyFeature     Opposite option of --no-propertyFeature.
    
         --no-propertyFeature     Configures boolean option 'propertyFeature' that is only negated.
    
         --rerun     Causes the task to be re-run even if up-to-date.
    
    Description
         -
    
    Group
         -""")
        }
    
        static String sampleTask() {
            """
                task sample(type: SampleTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go

    			writeFile(t, c.TestDataDirCurrentVersion, gvk, "", "yaml", expectedYAML)
    			writeFile(t, c.TestDataDirCurrentVersion, gvk, "", "pb", expectedProto)
    			t.Logf("wrote expected compatibility data... verify, commit, and rerun tests")
    		} else {
    			t.Logf("if the diff is expected because of a new type or a new field, re-run with %s=true to update the compatibility data", updateEnvVar)
    		}
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 16:38:32 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            where:
            task           | options
            "help"         | []
            "properties"   | []
            "dependencies" | []
            "help"         | ["--task", "help"]
            "help"         | ["--rerun"]
        }
    
        def "can store task selection success/failure for :help --task"() {
            def configurationCache = newConfigurationCacheFixture()
            buildFile.text = """
            task aTask
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. hack/ginkgo-e2e.sh

    # a terminal. That is the right choice for all Prow jobs (Spyglass doesn't
    # render them properly).
    GINKGO_NO_COLOR=${GINKGO_NO_COLOR:-$(if [ -t 2 ]; then echo n; else echo y; fi)}
    
    # If 'y', will rerun failed tests once to give them a second chance.
    GINKGO_TOLERATE_FLAKES=${GINKGO_TOLERATE_FLAKES:-n}
    
    # If set, the command executed will be:
    # - `dlv exec` if set to "delve"
    # - `gdb` if set to "gdb"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    		if os.Getenv(updateEnvVar) == "true" {
    			if err := os.WriteFile(filename, []byte(yamlData), os.FileMode(0755)); err == nil {
    				t.Logf("Updated data in %s", filename)
    				t.Logf("Verify the diff, commit changes, and rerun the tests")
    			} else {
    				t.Logf("Could not update data in %s: %v", filename, err)
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            events.clear()
            withConnection {
                ProjectConnection connection ->
                    connection.newBuild().withArguments('--rerun-tasks').forTasks('assemble').addProgressListener(events, EnumSet.of(OperationType.TASK)).run()
            }
    
            then: 'the parent of the task events is null'
            events.tasks.every { it.descriptor.parent == null }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            ConcurrentTestUtil.poll {
                testFile.touch()
                assert (testFile.lastModified() - originalTime) >= 2000L
            }
            run "wrapper", "--gradle-version", "2.2.1", "--rerun-tasks", "--no-validate-url"
    
            then:
            result.assertTasksExecuted(":wrapper")
            wrapperJar.md5Hash == old(wrapperJar.md5Hash)
            wrapperProperties.text == old(wrapperProperties.text)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    You can always use the `--rerun` <<command_line_interface.adoc#sec:builtin_task_options,built-in task option>> to force a task to rerun.
    
        gradle test --rerun
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    For multi-project builds, there can be only one `buildSrc` directory, which must be in the root project directory.
    
    NOTE: The downside of using `buildSrc` is that any change to it will invalidate every task in your project and require a rerun.
    
    `buildSrc` uses the same <<java_plugin.adoc#javalayout,source code conventions>> applicable to Java, Groovy, and Kotlin projects.
    It also provides direct access to the Gradle API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top