Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 370 for sourceFiles (0.15 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            then:
            executedAndNotSkipped getProjectTasks("app")
    
            and:
            final projectFile = projectFile("app.vcxproj")
            assert projectFile.sourceFiles == ['build.gradle'] + app.sourceFiles.collect({"src/main/cpp/${it.name}"}).sort()
            assert projectFile.headerFiles == app.headerFiles.collect({"src/main/cpp/${it.name}"}).sort()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/assembler/tasks/AssemblerTest.groovy

            1 * platformToolChain.newCompiler({AssembleSpec.class.isAssignableFrom(it)}) >> assembler
            1 * assembler.execute({ AssembleSpec spec ->
                assert spec.sourceFiles*.name == ["sourceFile"]
                assert spec.args == ['arg']
                assert spec.allArgs == ['arg']
                assert spec.objectFileDir.name == "outputFile"
                true
            }) >> result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            then:
            final projectFile = projectFile("mainExe.vcxproj")
            final List<SourceFile> resources = resourceApp.resourceSources
            final List<SourceFile> sources = resourceApp.sourceFiles - resources
            assert projectFile.headerFiles == resourceApp.headerFiles*.withPath("src/main").sort()
            assert projectFile.sourceFiles == ['build.gradle'] + sources*.withPath("src/main").sort()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/tasks/CppPreCompiledHeaderCompileTest.groovy

            1 * platformToolChain.newCompiler({CppPCHCompileSpec.class.isAssignableFrom(it)}) >> cppPCHCompiler
            1 * cppPCHCompiler.execute({ CppPCHCompileSpec spec ->
                assert spec.sourceFiles*.name== ["sourceFile"]
                assert spec.args == ['arg']
                assert spec.allArgs == ['arg']
                assert spec.macros == [def: 'value']
                assert spec.objectFileDir.name == "outputFile"
                true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/objectivecpp/tasks/ObjectiveCppCompileTest.groovy

            pch.objectFile >> temporaryFolder.file("pchObjectFile").createFile()
            pch.pchObjects >> TestFiles.empty()
            1 * objCppCompiler.execute({ ObjectiveCppCompileSpec spec ->
                assert spec.sourceFiles*.name == ["sourceFile"]
                assert spec.args == ['arg']
                assert spec.allArgs == ['arg']
                assert spec.macros == [def: 'value']
                assert spec.objectFileDir.name == "outputFile"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/objectivecpp/tasks/ObjectiveCppPreCompiledHeaderCompileTest.groovy

            1 * platformToolChain.newCompiler({ObjectiveCppPCHCompileSpec.class.isAssignableFrom(it)}) >> objCppPCHCompiler
            1 * objCppPCHCompiler.execute({ ObjectiveCppPCHCompileSpec spec ->
                assert spec.sourceFiles*.name== ["sourceFile"]
                assert spec.args == ['arg']
                assert spec.allArgs == ['arg']
                assert spec.macros == [def: 'value']
                assert spec.objectFileDir.name == "outputFile"
                true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompilerBuilder.java

    import org.gradle.nativeplatform.toolchain.internal.NativeCompileSpec;
    
    import java.util.Map;
    
    public interface IncrementalCompilerBuilder {
        IncrementalCompiler newCompiler(TaskInternal task, FileCollection sourceFiles, FileCollection includeDirs, Map<String, String> macros, Provider<Boolean> importAware);
    
        interface IncrementalCompiler {
            <T extends NativeCompileSpec> Compiler<T> createCompiler(Compiler<T> compiler);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/read.go

    		p.error = errors.New(errstr)
    	}
    	p.dir = r.string()
    	p.sourceFiles = make([]*sourceFile, r.int())
    	for i := range p.sourceFiles {
    		p.sourceFiles[i] = &sourceFile{
    			d:   m.d,
    			pos: r.int(),
    		}
    	}
    	p.modroot = m.modroot
    	return p
    }
    
    // sourceFile represents the information of a given source file in the module index.
    type sourceFile struct {
    	d               *decoder // encoding of this source file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/tasks/CppCompileTest.groovy

            pch.objectFile >> temporaryFolder.file("pchObjectFile").createFile()
            pch.pchObjects >> TestFiles.empty()
            1 * cppCompiler.execute({ CppCompileSpec spec ->
                assert spec.sourceFiles*.name == ["sourceFile"]
                assert spec.args == ['arg']
                assert spec.allArgs == ['arg']
                assert spec.macros == [def: 'value']
                assert spec.objectFileDir.name == "outputFile"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/c/tasks/CCompileTest.groovy

            pch.prefixHeaderFile >> temporaryFolder.file("prefixHeader").createFile()
            pch.pchObjects >> TestFiles.empty()
            1 * cCompiler.execute({ CCompileSpec spec ->
                assert spec.sourceFiles*.name== ["sourceFile"]
                assert spec.args == ['arg']
                assert spec.allArgs == ['arg']
                assert spec.macros == [def: 'value']
                assert spec.objectFileDir.name == "outputFile"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top