Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for filesFn (0.13 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            0 * fileResolver._
    
            when:
            def files = collection.files
    
            then:
            1 * fileResolver.resolve('a') >> file
            0 * fileResolver._
    
            then:
            files as List == [file]
    
            when:
            def files2 = collection.files
    
            then:
            files2 as List == [file]
    
            and:
            0 * fileResolver._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    def files1 = configurations.conf
                    def files2 = configurations.conf2
                    def files3 = configurations.conf3
                    def files4 = configurations.conf4
                    doLast {
                        def files = files1*.name.sort()
                        assert files == ['a-1.0.jar', 'b-1.0.jar', 'leaf-6.jar']
                        files = files2*.name.sort()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def fileSet = [new File("somePath")] as Set
            resolver.resolveGraph(configuration) >> graphResolved(fileSet)
    
            when:
            def files = configuration.files(Mock(Dependency))
    
            then:
            files == fileSet
            configuration.state == RESOLVED
        }
    
        def filesWithSpec() {
            def configuration = conf()
            def fileSet = [new File("somePath")] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                def files1 = configurations.implementation.incoming.artifactView {
                    attributes.attribute(color, 'green')
                }.files
    
                task usesFiles1 {
                    doLast {
                        println files1*.name
                    }
                }
    
                def files2 = configurations.implementation.incoming.artifactView {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("target", pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@dir"));
            assertNull(pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@todir"));
            assertNull(pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@overwrite"));
        }
    
        /** MNG-4053*/
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            given:
            file('files/one/one.a').createFile()
            file('files/one/one.ignore').createFile()
            file('files/one/sub/one.a').createFile()
            file('files/one/sub/ignore/ignore.a').createFile()
            file('files/two/two.b').createFile()
            file('files/two/two.ignore').createFile()
            file('files/two/sub/two.b').createFile()
            file('files/two/sub/ignore/ignore.b').createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    	ph.Filesz = seg.Filelen
    	ph.Align = uint64(*FlagRound)
    
    	return ph
    }
    
    func elfphrelro(seg *sym.Segment) {
    	ph := newElfPhdr()
    	ph.Type = elf.PT_GNU_RELRO
    	ph.Flags = elf.PF_R
    	ph.Vaddr = seg.Vaddr
    	ph.Paddr = seg.Vaddr
    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    	ph.Filesz = seg.Filelen
    	ph.Align = uint64(*FlagRound)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    	segdataFilelen := Segdata.Filelen
    	segdataFileoff := Segdata.Fileoff
    	segbssFilelen := Segdata.Length - Segdata.Filelen
    	if len(Segrelrodata.Sections) > 0 {
    		// Merge relro segment to data segment as
    		// relro data are inside data segment on AIX.
    		segdataVaddr = Segrelrodata.Vaddr
    		segdataFileoff = Segrelrodata.Fileoff
    		segdataFilelen = Segdata.Vaddr + Segdata.Filelen - Segrelrodata.Vaddr
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/go/build/build.go

    	CFiles            []string // .c source files
    	CXXFiles          []string // .cc, .cpp and .cxx source files
    	MFiles            []string // .m (Objective-C) source files
    	HFiles            []string // .h, .hh, .hpp and .hxx source files
    	FFiles            []string // .f, .F, .for and .f90 Fortran source files
    	SFiles            []string // .s source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Normalization applies to all zip files on the classpath (e.g. jars, wars, aars, apks, etc).  This allows Gradle to recognize when two zip files are functionally the same, even though the zip files themselves might be slightly different due to metadata (such as timestamps or file order).  Normalization applies not only to zip files directly on the classpath, but also to zip files nested inside directories or inside other zip files on the classpath.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top