Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for copy2 (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

            buildFile << """
                task copy(type: Copy) {
                    from '${input.name}'
                    into '${outputDirectory.name}'
                    doNotTrackState("Destination contains unreadable files")
                }
            """
    
            when:
            run "copy"
            then:
            executedAndNotSkipped(":copy")
            outputDirectory.list().contains input.name
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableMavenModuleResolveMetadataTest.groovy

            def copy = immutable.asMutable()
            copy.id = newId
            copy.sources = MutableModuleSources.of(sources)
            copy.changing = true
            copy.status = "3"
            copy.statusScheme = ["2", "3"]
            copy.snapshotTimestamp = "123"
            copy.packaging = "pom"
            copy.relocated = true
            def immutableCopy = copy.asImmutable()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            then:
            result.assertTasksSkipped(":copy")
    
            when:
            createZip('test.zip') {
                subdir1 {
                    file 'file1.txt'
                }
                subdir2 {
                    file 'file2.xml'
                }
                file 'file3.txt'
            }
    
            run 'copy'
    
            then:
            result.assertTasksExecutedAndNotSkipped(":copy")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacement.kt

                    is ObjectOrigin.CustomConfigureAccessor -> origin.copy(receiver = replace(origin.receiver))
                    is ObjectOrigin.FromLocalValue -> origin.copy(assigned = replace(origin.assigned))
                    is ObjectOrigin.ImplicitThisReceiver -> origin.copy(resolvedTo = replaceInReceiver(origin.resolvedTo))
                    is ObjectOrigin.PropertyDefaultValue -> origin.copy(receiver = replace(origin.receiver))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

            when:
            def copy = strategy.copy()
    
            then:
            1 * cachePolicy.copy() >> Mock(DefaultCachePolicy)
            !copy.is(strategy)
            !copy.cachePolicy.is(strategy.cachePolicy)
            !copy.componentSelection.is(strategy.componentSelection)
        }
    
        def "use global substitution rules state is not share with copy"() {
            when:
            def copy = strategy.copy()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top