Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for Sfiles (0.18 sec)

  1. src/cmd/dist/build.go

    		return !strings.HasPrefix(p, ".") && (!strings.HasPrefix(p, "_") || !strings.HasSuffix(p, ".go"))
    	})
    
    	// Add generated files for this package.
    	for _, gt := range gentab {
    		if gt.pkg == pkg {
    			files = append(files, gt.file)
    		}
    	}
    	files = uniq(files)
    
    	// Convert to absolute paths.
    	for i, p := range files {
    		if !filepath.IsAbs(p) {
    			files[i] = pathf("%s/%s", dir, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	HFiles            []string // .h, .hh, .hpp and .hxx source files
    	FFiles            []string // .f, .F, .for and .f90 Fortran source files
    	SFiles            []string // .s source files
    	SwigFiles         []string // .swig files
    	SwigCXXFiles      []string // .swigcxx files
    	SysoFiles         []string // .syso system object files to add to archive
    
    	// Cgo directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    === Copying multiple files
    
    You can extend the previous examples to multiple files very easily by providing multiple arguments to `from()`:
    
    ====
    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=copy-multiple-files-example]"]
    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=copy-multiple-files-example]"]
    ====
    
    Two files are now copied into the archive directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def files = collection.files
    
            then:
            _ * fileResolver.resolve("src2") >> file2
            files as List == [file1, file2]
            !collection.explicit
        }
    
        def "can alternate multiple updates to collection convention and explicit values"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def file3 = new File("3")
            def file4 = new File("4")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        def files = configurations._compileFreeDebug
                        doLast {
                           assert files.collect { it.name } == ['b-foo.jar']
                        }
                    }
                    task checkRelease(dependsOn: configurations._compileFreeRelease) {
                        def files = configurations._compileFreeRelease
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.</p>
         *
         * @param zipPath The ZIP file. Evaluated as per {@link #file(Object)}.
         * @return the file tree. Never returns null.
         */
        FileTree zipTree(Object zipPath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            config.incoming.dependencies as List == [dep1]
        }
    
        def "incoming dependencies set files are resolved lazily"() {
            setup:
            def config = conf("conf")
    
            when:
            def files = config.incoming.files
    
            then:
            0 * _._
    
            when:
            files.files
    
            then:
            resolver.resolveGraph(config) >> graphResolved()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            output.count('Single step transform received dependencies files [] for processing slf4j-api-1.7.25.jar') == 1
            output.count('Single step transform received dependencies files [slf4j-api-1.7.24.jar] for processing lib.jar') == 1
            output.count('Single step transform received dependencies files [slf4j-api-1.7.25.jar] for processing lib.jar') == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    provided via a link:{groovyDslPath}/org.gradle.language.cpp.CppSourceSet.html[CppSourceSet], which defines a set of C++ source files and optionally a set of exported header files (for a library). By default, for any named component the link:{groovyDslPath}/org.gradle.language.cpp.CppSourceSet.html[CppSourceSet] contains `.cpp` source files in `src/${name}/cpp`, and header files in `src/${name}/headers`.
    
    While the `cpp` plugin defines these default locations for each link:{groovyDslPath}/o...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top