Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 104 for someTaskB (0.18 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypesFixed/tests/configurationCacheDisallowedTypesFixed.sample.conf

    commands: [{
      executable: gradle
      args: someTaskType someTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/groovy/build.gradle

    tasks.register('someTask') {
        def destination = System.getProperty('someDestination') // <1>
        inputs.dir('source')
        outputs.dir(destination)
        doLast {
            project.copy { // <2>
                from 'source'
                into destination
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 266 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypes/tests/configurationCacheDisallowedTypes.sample.conf

    commands: [{
      executable: gradle
      args: someTaskType someTask
      expect-failure: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 90 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/store-another.out

    Calculating task graph as configuration cache cannot be reused because system property 'someDestination' has changed.
    > 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
    - 189 bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/ConfigurableFileTreeIntegrationTest.groovy

                'a/is ONE.txt',
                'c/more-one.txt'
            )
        }
    
        def "can include the elements of a tree using a Groovy closure spec"() {
            buildFile """
                class SomeTask extends DefaultTask {
                    @InputFiles
                    final ConfigurableFileTree sourceFiles = project.objects.fileTree()
    
                    @OutputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildParallelIntegrationTest.groovy

            buildA.buildFile << """
                task delegate {
                    dependsOn gradle.includedBuilds*.task(":someTask")
                }
            """
            (1..totalIncludedBuilds).each {
                includedBuilds << singleProjectBuild("included$it") {
                    buildFile << """
                        task someTask {
                            doLast {
                                Thread.sleep(100)
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/kotlin/build.gradle.kts

    tasks.register("someTask") {
        val destination = System.getProperty("someDestination") // <1>
        inputs.dir("source")
        outputs.dir(destination)
        doLast {
            project.copy { // <2>
                from("source")
                into(destination)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 268 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/configurationCache/projectAtExecution/tests/store.out

    > Invocation of 'Task.project' by task ':someTaskType' at execution time is unsupported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 174 bytes
    - Viewed (0)
Back to top