Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 82 for rerun (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    <3> When submitting the unit of work, specify the unit of work implementation, in this case `GenerateMD5`, and configure its parameters.
    
    At this point, you should be able to rerun your task:
    
    [listing]
    ----
    $ gradle clean md5
    
    include::{snippetsPath}/workerApi/md5NoIsolation/tests/md5Task1.out[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Ordering.java

       * than this method, and this method in turn generally performs better than copying the list and
       * calling {@link Collections#sort(List)}.
       */
      // TODO(kevinb): rerun benchmarks including new options
      @SuppressWarnings("nullness") // TODO: b/316358623 - Remove after checker fix.
      public <E extends T> List<E> sortedCopy(Iterable<E> elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    [cols="~,~,~"]
    |===
    |Mechanism |Information |Example
    
    |<<command_line_interface#command_line_interface,Command line interface>>
    |Flags that configure build behavior and Gradle features
    |`--rerun`
    
    |<<sec:project_properties,Project properties>>
    |Properties specific to your Gradle project
    |`TestFilter::isFailOnNoMatchingTests=false`
    
    |<<#sec:gradle_system_properties,System properties>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    The action deletes a target file if the corresponding input file has been removed.
    
    If, for some reason, the task is executed non-incrementally (by running with `--rerun-tasks`, for example), all files are reported as `ADDED`, irrespective of the previous state.
    In this case, Gradle automatically removes the previous outputs, so the incremental task must only process the given files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
     *       there is ever any doubt, they can all be increased in one spot to rerun tests on slower
     *       platforms.
     *   <li>All threads generated must be joined inside each test case method (or {@code fail} to do
     *       so) before returning from the method. The {@code joinPool} method can be used to do this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
     *       there is ever any doubt, they can all be increased in one spot to rerun tests on slower
     *       platforms.
     *   <li>All threads generated must be joined inside each test case method (or {@code fail} to do
     *       so) before returning from the method. The {@code joinPool} method can be used to do this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        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
    - 50K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	tg.grepStderr(`([\\/]link|gccgo).*t3\.test`, "did not relink t3_test")
    	tg.grepStderr(`t3\.test.*-test.short`, "did not rerun t3_test")
    	tg.grepStdoutNot(`ok  \tt/t3\t\(cached\)`, "reported cached t3_test result")
    
    	// t4 imports p2, but p2 did not change, so t4 should be relinked, not recompiled,
    	// and not rerun.
    	tg.grepStderrNot(`([\\/]compile|gccgo).*t4_test.go`, "incorrectly recompiled t4")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/buildid.go

    	// much larger, so the cache-footprint-to-utility ratio
    	// of binaries is much lower for binaries.
    	// Not caching the link step also makes sure that repeated "go run" at least
    	// always rerun the linker, so that they don't get too fast.
    	// (We don't want people thinking go is a scripting language.)
    	// Note also that if we start caching binaries, then we will
    	// copy the binaries out of the cache to run them, and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        }
                    }
                }
            """
        }
    
        def "incremental transform is rerun when output is #action between builds"() {
            given:
            buildFile << declareAttributes() << multiProjectWithJarSizeTransform(incremental: true) << withClassesSizeTransform()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top