Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/documentation/docs/src/snippets/configurationCache/projectAtExecution/tests/configurationCacheProjectAtExecution.sample.conf

    commands: [{
      executable: gradle
      args: someTaskType someTask
      expect-failure: true
      expected-output-file: store.out
      allow-additional-output: true
      allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 188 bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            settingsFile << "include ':subproj1'"
            buildFile << """task someTask(type:Jar){
                description = "an archiving operation"
            }
    
            project(":subproj1"){
                task someTask(type:Copy){
                    description = "a copy operation"
                }
            }"""
    
            when:
            run "help", "--task", "someTask"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top