Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for tasksExecuted (0.28 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/application-build.out.template

    > Task :${subprojectName.raw}:testClasses${classesUpToDate.raw}
    > Task :${subprojectName.raw}:test
    > Task :${subprojectName.raw}:check
    > Task :${subprojectName.raw}:build
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 821 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/library-build.out.template

    > Task :${subprojectName.raw}:testClasses${classesUpToDate.raw}
    > Task :${subprojectName.raw}:test
    > Task :${subprojectName.raw}:check
    > Task :${subprojectName.raw}:build
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 702 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    == Build the library
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                .create().generate()
        }
    
        private
        fun tasksExecuted(descriptor: CompositeProjectInitDescriptor): Int {
            val tasksExecuted = if (descriptor.componentType === ComponentType.LIBRARY) 4 else 7
            return tasksExecuted + if (descriptor.language === Language.KOTLIN) 1 else 0
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    To do so, just run Gradle with the `--scan` flag.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build --scan
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    
    Publishing a build scan to scans.gradle.com requires accepting the Gradle Terms of Service defined at https://gradle.com/terms-of-service.
    Do you accept these terms? [yes, no] yes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    The archive will also contain a script to start the application with a single command.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    If you run a full build as shown above, Gradle will have produced the archive in two formats for you:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    == Build the application
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseAutoBuildTasksCrossVersionSpec.groovy

                    .setStandardOutput(out)
                    .forTasks()
                    .run()
            }
    
            then:
            !taskExecuted(out, ":nothing")
            !taskExecuted(out, ":nothing_")
            taskExecuted(out, ":nothing__")
        }
    
        private def taskExecuted(ByteArrayOutputStream out, String taskPath) {
            out.toString().contains("> Task $taskPath ")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

            child2.classpath[0].javadoc.name == 'child1-1.0-javadoc.jar'
            taskExecuted(out, ":eclipseClosedDependencies")
            taskExecuted(out, ":child1:javadocJar")
            taskExecuted(out, ":child1:sourceJar")
    
        }
    
    
        private static def taskExecuted(ByteArrayOutputStream out, String taskPath) {
            out.toString().find("(?m)> Task ${Pattern.quote(taskPath)}\$") != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top