Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 968 for buildssa (0.17 sec)

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

    First, create a custom task that generates MD5 hashes of a configurable set of files.
    
    In a new directory, create a `buildSrc/build.gradle(.kts)` file:
    
    ====
    include::sample[dir="snippets/workerApi/md5CustomTask/kotlin",files="buildSrc/build.gradle.kts[]"]
    include::sample[dir="snippets/workerApi/md5CustomTask/groovy",files="buildSrc/build.gradle[]"]
    ====
    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. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r84/TestLauncherCompositeBuildCrossVersionTest.groovy

            } else {
                assert configurationCacheReusedIn(output2)
            }
    
            where:
            api << LauncherApi.values()
        }
    
        def "Can run tasks from nested included build buildSrc"() {
            given:
            def runTestClass = withIncludedBuildBuildSrcTest(api)
    
            when:
            def output1 = runTestClass.apply('TestClass1')
    
            then:
            notThrown(Exception)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/composite/internal/BuildTreeWorkGraphController.java

         * Runs the given action against a new, empty work graph. This allows tasks to be run while calculating the task graph of the build tree, for example to run `buildSrc` tasks or
         * to build local plugins in an included build.
         */
        @Nonnull(when = When.UNKNOWN)
        <T> T withNewWorkGraph(Function<? super BuildTreeWorkGraph, T> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

            fixture.assertStateUpdated {
                fileChanged("a/build.gradle")
                fileChanged("b/build.gradle")
                projectConfigured(":buildSrc")
                projectConfigured(":")
                modelsCreated(":a", ":b")
                modelsReused(":", ":buildSrc")
            }
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model4 = runBuildAction(new FetchCustomModelForEachProjectInParallel())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    == Step 1. Understanding Incremental Builds
    It's important to know that Gradle optimizes your build in a variety of ways.
    One such optimization is called _incremental builds_.
    
    An _incremental build_ is a build that avoids running tasks whose inputs did not change since the previous build, making the execution of such tasks unnecessary.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

            notifications.started(EvaluateSettingsBuildOperationType.Details, [settingsDir: file('a').absolutePath, settingsFile: file('a/settings.gradle').absolutePath, buildPath: ":a"])
            notifications.started(EvaluateSettingsBuildOperationType.Details, [settingsDir: file('a/buildSrc').absolutePath, settingsFile: file('a/buildSrc/settings.gradle').absolutePath, buildPath: ":a:buildSrc"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskDependencyIntegrationTest.groovy

        }
    
        def "can depend on task from subproject of composing build"() {
            given:
            createDirs("buildA", "buildA/a1")
            buildA.settingsFile << """
        include 'a1'
    """
            buildA.buildFile << """
        task("top-level") {
            dependsOn ':a1:delegate'
        }
    
        project(':a1') {
            task delegate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

        @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "classloader isolation does not work here in embedded mode")
        @InspectsExecutedTasks
        def "buildSrc classes are not visible to injected classes"() {
            plugin.build()
            def buildSrcSrcDir = file("buildSrc/src/main/groovy/org/gradle/test")
    
            // these class names intentionally clash with what we are injecting
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

            given:
            def pluginBuilder = new PluginBuilder(file("plugin"))
            pluginBuilder.addSettingsPlugin """
                settings.gradle.allprojects {
                    println "Hello from root build's plugin"
                }
            """, "org.gradle.test.MyPlugin", "MyPlugin"
    
            pluginBuilder.prepareToExecute()
    
            settingsFile << """
                includeBuild("plugin")
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    * The build's output;
    * The build's logging (i.e. console output);
    * The set of tasks executed by the build and their results (e.g. FAILED, UP-TO-DATE etc.).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top