Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,150 for reusing (0.18 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    1 problem was found reusing the configuration cache.
    - Build file 'build.gradle': line 6: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    See the complete report at file:///home/user/gradle/samples/build/reports/configuration-cache/<hash>/configuration-cache-report.html
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 514 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    1 problem was found reusing the configuration cache.
    - Task `:someTask` of type `org.gradle.api.DefaultTask`: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 534 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTestSpecCrossVersionSpec.groovy

                }
            }
    
            then:
            // TestLauncher configuration ignored: only tests from the configuration cache entry is executed
            stdout.toString().contains("Reusing configuration cache.")
            events.testClassesAndMethods.size() == 4 // 2 test class + 2 test method events
            assertTestExecuted(className: 'example2.MyOtherTest', methodName: 'bar', task: ':secondTest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/noProblem/tests/load.out

    Reusing configuration cache....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 29 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/load-another.out

    Reusing configuration cache.
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/library-summary.adoc.template

    == Next steps
    
    Building a library is just one aspect of reusing code across project boundaries.
    From here, you may be interested in:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
     - link:{userManualPath}/java_library_plugin.html[Java Library Plugin documentation]
     - Consuming JVM libraries using link:{userManualPath}/core_dependency_management.html[dependency management]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/configurationCache/testKit/groovy/src/test/groovy/org/example/BuildLogicFunctionalTest.groovy

                .build()
    
            and:
            def result = runner()
                .withArguments('--configuration-cache', 'myTask')    // <2>
                .build()
    
            then:
            result.output.contains('Reusing configuration cache.')      // <3>
            // ... more assertions on your task behavior
        }
        // end::functional-test-configuration-cache[]
    
        def runner() {
            return GradleRunner.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectReportIntegTest.groovy

            when:
            configurationCacheRun(task, *options)
            def secondRunOutput = removeVfsLogOutput(result.normalizedOutput)
                .replaceAll(/Reusing configuration cache.\n/, '')
                .replaceAll(/Configuration cache entry reused.\n/, '')
    
            then:
            firstRunOutput == secondRunOutput
    
            where:
            task                    | options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top