Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for copy2 (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            buildScript '''
                task (copy, type:Copy) {
                   from 'files'
                   into 'dest'
                }
            '''
    
            when:
            run 'copy'
            then:
            executedAndNotSkipped(":copy")
    
            when:
            file("files/sub/empty").createDir()
            run 'copy'
            then:
            executedAndNotSkipped(":copy")
    
            when:
            run 'copy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskTypeUpToDateIntegrationTest.groovy

            buildFile """
                task copy(type: Copy) {
                    from "input.txt"
                    destinationDir buildDir
                }
            """
    
            when:
            succeeds "copy"
            then:
            executedAndNotSkipped(":copy")
    
            file('build/input.txt').makeOlder()
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/copy/kotlin/build.gradle.kts

        }
    }
    // end::copy-task-with-patterns[]
    
    // tag::copy-task-2[]
    tasks.register<Copy>("anotherCopyTask") {
        // Copy everything under src/main/webapp
        from("src/main/webapp")
        // Copy a single file
        from("src/staging/index.html")
        // Copy the output of a task
        from(copyTask)
        // Copy the output of a task using Task outputs explicitly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

                details.file.text.contains('DRAFT')
        }
    }
    // end::copy-task-with-patterns[]
    
    // tag::copy-task-2[]
    tasks.register('anotherCopyTask', Copy) {
        // Copy everything under src/main/webapp
        from 'src/main/webapp'
        // Copy a single file
        from 'src/staging/index.html'
        // Copy the output of a task
        from copyTask
        // Copy the output of a task using Task outputs explicitly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/AbstractPropertySpec.groovy

            then:
            property.isFinalized()
        }
    
        def "can obtain shallow copy of property"() {
            given:
            def property = propertyWithValue(someValue())
    
            when:
            def copy = property.shallowCopy()
    
            then:
            copy.orNull == someValue()
        }
    
        def "shallow copy of property does not follow changes to original"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 12:47:05 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass_test_helper.h

        Options WithNoGlobalJit() {
          Options copy = *this;
          copy.enable_global_jit = false;
          return copy;
        }
    
        Options WithDeadnessAnalysis() {
          Options copy = *this;
          copy.disable_deadness_analysis = false;
          return copy;
        }
    
        Options WithNoClusterScoping() {
          Options copy = *this;
          copy.enable_cluster_scoping = false;
          return copy;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 09 19:51:48 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileTreeIntegrationTest.groovy

            run 'copy'
    
            then:
            result.assertTaskSkipped(':copy')
            file('dest').assertHasDescendants(
                'one.txt',
                'two.txt'
            )
    
            when:
            file('files/a/three.txt').createFile()
            run 'copy'
    
            then:
            result.assertTaskNotSkipped(':copy')
            file('dest').assertHasDescendants(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopySpecEncodingIntegrationSpec.groovy

            when:
            run 'copy'
    
            then:
            file('dest/accents.c').getText('ISO-8859-1') == 'éàüî 1'
    
            when:
            run 'copy'
    
            then:
            skipped(':copy')
            file('dest/accents.c').getText('ISO-8859-1') == 'éàüî 1'
    
            when:
            file('files/accents.c').write('áëü $one', 'ISO-8859-1')
            run 'copy'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:45:30 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

            immutable.excludes == excludes
    
            def copy = immutable.asMutable()
            copy != metadata
            copy.id == newId
            copy.moduleVersionId == DefaultModuleVersionIdentifier.newId(newId)
            copy.sources == MutableModuleSources.of(sources)
            copy.status == "3"
            copy.branch == "release"
            copy.changing
            copy.missing
            copy.statusScheme == ["1", "2", "3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/Dockerfile

    ################################################################################
    COPY --from=builder /dt10 /dt10
    COPY --from=builder /patchelf/patchelf_0.14.3-1_arm64.deb /patchelf/patchelf_0.14.3-1_arm64.deb
    
    # Install devtoolset devel dependencies
    COPY setup.sources.sh /setup.sources.sh
    COPY setup.packages.sh /setup.packages.sh
    COPY devel.packages.txt /devel.packages.txt
    COPY cuda.packages.txt /cuda.packages.txt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 09:32:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top