Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 370 for sourceFiles (0.34 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppBinary.java

            super(names, objects, componentImplementation);
            this.baseName = baseName;
            this.sourceFiles = sourceFiles;
            this.targetPlatform = targetPlatform;
            this.toolChain = toolChain;
            this.platformToolProvider = platformToolProvider;
            this.compileTaskProperty = objects.property(CppCompile.class);
            this.identity = identity;
    
            // TODO - reduce duplication with Swift binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/KtCompiledFileForOutputFile.kt

    @KaAnalysisApiInternals
    class KaCompiledFileForOutputFile(private val outputFile: OutputFile) : KaCompiledFile {
        override val path: String
            get() = outputFile.relativePath
    
        override val sourceFiles: List<File>
            get() = outputFile.sourceFiles
    
        override val content: ByteArray
            get() = outputFile.asByteArray()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 824 bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/testFixtures/groovy/org/gradle/language/scala/fixtures/TestScalaComponent.groovy

    }'''),
                new JvmSourceFile("compile/test", "Person2.scala", '''
    package compile.test;
    
    class Person2 {
    }
    ''')
        ]
    
        @Override
        void changeSources(List<TestFile> sourceFiles) {
            def personScalaFile = sourceFiles.find { it.name == "Person.scala" }
            personScalaFile.text = personScalaFile.text.replace("name", "lastName")
        }
    
        @Override
        void writeAdditionalSources(TestFile testFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/SourceTask.java

     */
    @NonNullApi
    @DisableCachingByDefault(because = "Super-class, not to be instantiated directly")
    public abstract class SourceTask extends ConventionTask implements PatternFilterable {
        private ConfigurableFileCollection sourceFiles = getProject().getObjects().fileCollection();
        private final PatternFilterable patternSet;
    
        public SourceTask() {
            patternSet = getPatternSetFactory().create();
        }
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompilerTest.groovy

        def setup() {
            spec.compileClasspath = [new File('Dep1.jar'), new File('Dep2.jar'), new File('Dep3.jar')]
            spec.groovyClasspath = spec.compileClasspath
            spec.sourceFiles = files('House.scala', 'Person1.java', 'package.html', 'Person2.groovy')
            spec.destinationDir = new File("destinationDir")
            spec.compileOptions = TestUtil.newInstance(CompileOptions.class, TestUtil.objectFactory())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/ProcessTemplates.java

        @SkipWhenEmpty
        @InputFiles
        @PathSensitive(PathSensitivity.NONE)
        public abstract ConfigurableFileCollection getSourceFiles();
    
        public void sources(FileCollection sourceFiles) {
            getSourceFiles().from(sourceFiles);
        }
    
        // ...
    // end::custom-task-class[]
    
    // tag::task-arg-method[]
        // ...
        public void sources(TaskProvider<?> inputTask) {
            getSourceFiles().from(inputTask);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGeneratorConfiguration.groovy

                reflectasm: 'com.googlecode:reflectasm:1.01',
            ]
    
            config.subProjects = this.subProjects
            config.projectDepth = this.projectDepth
            config.sourceFiles = this.sourceFiles
            config.minLinesOfCodePerSourceFile = 100
            config.compositeBuild = this.compositeBuild
    
            config.daemonMemory = this.daemonMemory
            config.compilerMemory = this.compilerMemory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioFiltersFileTest.groovy

            filtersFile.addHeader(file("headerTwo"))
    
            then:
            assert sourceFile(0) == "sourceOne"
            assert sourceFile(1) == "sourceTwo"
    
            assert headerFile(0) == "headerOne"
            assert headerFile(1) == "headerTwo"
        }
    
        private String sourceFile(int index) {
            def source = itemGroup('Sources').ClCompile[index]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:02:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/index_format.txt

    for each rawPackage:
    	error uint32 - string offset // error is produced by fsys.ReadDir or fmt.Errorf
    	dir uint32 - string offset (directory path relative to module root)
    	len(sourceFiles) uint32
    	sourceFiles [n]uint32 - offset to source file (relative to start of index file)
    	for each sourceFile:
    		error - string offset // error is either produced by fmt.Errorf,errors.New or is io.EOF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 13 00:22:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

                        }
                    }
                """
            }
            sourceFiles = subprojects.collectMany { projectDir ->
                (1..NUMBER_OF_SOURCES_PER_SUBPROJECT).collect {
                    def sourceFile = rootProject.file("${projectDir}/src/main/java/my/domain/Dummy${it}.java")
                    modifySourceFile(sourceFile, 0)
                    return sourceFile
                }
            }
    
            executer.beforeExecute {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top