Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 362 for sourceFiles (0.18 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

            given:
            app.library.headerFiles*.writeToDir(file("src/hello"))
            app.cunitTests.writeSources(file("src/helloTest"))
            app.library.sourceFiles*.writeToDir(file("src/variant"))
    
            when:
            buildFile << """
    model {
        components {
            hello(NativeLibrarySpec) { l ->
                targetPlatform "x86"
                binaries.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            };
        }
    
        private PBXSourcesBuildPhase newSourceBuildPhase(FileCollection sourceFiles) {
            PBXSourcesBuildPhase result = new PBXSourcesBuildPhase();
            for (File file : sourceFiles) {
                PBXFileReference fileReference = pathToFileReference.get(file.getAbsolutePath());
                result.getFiles().add(new PBXBuildFile(fileReference));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

            def sourcefile1 = new File('file1')
            def sourcefile2 = new File('file2')
            def sourcefile3 = new File('file3')
            def resourcefile1 = new File('file4')
            def resourcefile2 = new File('file5')
            def resourcefile3 = new File('file6')
            def sourceSet = sourceSet(sourcefile1, sourcefile2, sourcefile3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

            then:
            skipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("main")
    
            and:
            final projectFile = projectFile("mainExe.vcxproj")
            assert projectFile.sourceFiles.contains('src/main/cpp/foo.cpp')
    
            when:
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
            skipped getComponentTasks("main")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

         * Path of the compiled file relative to the root of the output directory.
         */
        public val path: String
    
        /**
         * Source files that were compiled to produce this file.
         */
        public val sourceFiles: List<File>
    
        /**
         * Content of the compiled file.
         */
        public val content: ByteArray
    }
    
    public typealias KtCompiledFile = KaCompiledFile
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginTemplatesTest.kt

        fun publishPluginsTo(
            repository: File,
            group: String = "org.acme",
            version: String = "1.0",
            sourceFiles: FoldersDslExpression
        ) {
            withFolders {
    
                "plugins" {
    
                    "src/main/kotlin" {
                        sourceFiles()
                    }
    
                    withFile("settings.gradle.kts", defaultSettingsScript)
    
                    withFile(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

            given:
            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("src/main"))
    
            app.library.headerFiles*.writeToDir(file("src/helloApi"))
            app.library.sourceFiles*.writeToDir(file("src/hello"))
    
            and:
            buildFile << """
    model {
        components { comp ->
            helloApi(NativeLibrarySpec)
            hello(NativeLibrarySpec) {
                sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinCompiler.kt

        )
    }
    
    
    @VisibleForTesting
    internal
    fun compileToDirectory(
        outputDirectory: File,
        compilerOptions: KotlinCompilerOptions,
        moduleName: String,
        sourceFiles: Iterable<File>,
        logger: Logger,
        classPath: Iterable<File>,
    ): Boolean {
    
        withRootDisposable {
            withMessageCollectorFor(logger, EmbeddedKotlinCompilerWarning.WARN) { messageCollector ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 31 08:46:17 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                jdkHome,
            )
        }
    
        private fun initialiseVirtualFileFinderServices(
            environment: KotlinCoreProjectEnvironment,
            modules: List<KtModule>,
            sourceFiles: List<PsiFileSystemItem>,
            languageVersionSettings: LanguageVersionSettings,
            jdkHome: Path?,
        ) {
            val project = environment.project
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            then:
            skipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("app")
    
            and:
            final projectFile = projectFile("app.vcxproj")
            assert projectFile.sourceFiles.contains('src/main/cpp/foo.cpp')
    
            when:
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
            skipped getComponentTasks("app")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top