Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for librarySource (0.2 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeContinuousBuildIntegrationTest.groovy

            def includedLibrary = singleProjectBuild("library") {
                buildFile << """
                    apply plugin: 'java'
                """
            }
            def librarySource = includedLibrary.file("src/main/java/org/test/Library.java")
            librarySource << """
                package org.test;
                public class Library {
                    public static void print(String who) {
                        System.out.println("Hello " + who);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryDependenciesIntegrationTest.groovy

            buildFile << """
                apply plugin: 'cpp-library'
                project(':lib') {
                    apply plugin: 'cpp-library'
                }
            """
            file("lib/src/main/cpp/lib.cpp") << librarySource
            file("src/main/cpp/lib.cpp") << mainLibrarySource
        }
    
        @Override
        protected void makeComponentWithIncludedBuildLibrary() {
            buildFile << """
                apply plugin: 'cpp-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationDependenciesIntegrationTest.groovy

            buildFile << """
                apply plugin: 'cpp-application'
                project(':lib') {
                    apply plugin: 'cpp-library'
                }
            """
    
            file("lib/src/main/cpp/lib.cpp") << librarySource
            file("src/main/cpp/app.cpp") << applicationSource
        }
    
        @Override
        protected void makeComponentWithIncludedBuildLibrary() {
            buildFile << """
                apply plugin: 'cpp-application'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryDependenciesIntegrationTest.groovy

                project(':lib') {
                    apply plugin: 'swift-library'
                }
            """
    
            file("src/main/swift/Lib.swift") << librarySource
            file("lib/src/main/swift/Lib.swift") << librarySource
        }
    
        @Override
        protected void makeComponentWithIncludedBuildLibrary() {
            buildFile << """
                apply plugin: 'swift-library'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests/org/jetbrains/kotlin/analysis/api/fir/test/configurators/AnalysisApiFirTestConfiguratorFactory.kt

                    require(data.analysisSessionMode == AnalysisSessionMode.Normal)
                    AnalysisApiFirLibraryBinaryDecompiledTestConfigurator
                }
    
                TestModuleKind.LibrarySource -> {
                    require(data.analysisSessionMode == AnalysisSessionMode.Normal)
                    AnalysisApiFirLibrarySourceTestConfigurator
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 16:58:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationDependenciesIntegrationTest.groovy

                project(':lib') {
                    apply plugin: 'swift-library'
                }
            """
    
            file("src/main/swift/main.swift") << applicationSource
            file("lib/src/main/swift/Lib.swift") << librarySource
        }
    
        @Override
        protected void makeComponentWithIncludedBuildLibrary() {
            buildFile << """
                apply plugin: 'swift-application'
            """
    
            file('lib/build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

                @Mutate
                void createSampleComponentComponents(ModelMap<SampleLibrary> componentSpecs) {
                    componentSpecs.create("sampleLib") {
                        sources {
                            librarySource(LibrarySourceSet)
                        }
                    }
                }
    
                @ComponentType
                void registerBinary(TypeBuilder<SampleBinary> builder) {}
    
                @ComponentType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/configurators/AnalysisApiFirStandaloneModeTestConfiguratorFactory.kt

                    TestModuleKind.CodeFragment -> {
                        true
                    }
    
                    TestModuleKind.ScriptSource,
                    TestModuleKind.LibrarySource,
                    TestModuleKind.NotUnderContentRoot -> {
                        false
                    }
                }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 16:58:31 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/tests/org/jetbrains/kotlin/analysis/api/fe10/test/configurator/AnalysisApiFe10TestConfiguratorFactory.kt

                    }
    
                    TestModuleKind.ScriptSource,
                    TestModuleKind.LibraryBinary,
                    TestModuleKind.LibraryBinaryDecompiled,
                    TestModuleKind.LibrarySource,
                    TestModuleKind.CodeFragment,
                    TestModuleKind.NotUnderContentRoot -> {
                        false
                    }
                }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppBinariesRelocationIntegrationTest.groovy

                project(':lib') {
                    apply plugin: 'cpp-library'
                }
            """
    
            file("lib/src/main/public/lib.h") << libraryHeader
            file("lib/src/main/cpp/lib.cpp") << librarySource
            file("src/main/cpp/app.cpp") << applicationSource
        }
    
        private static String getLibraryHeader() {
            return """
                #ifdef _WIN32
                #define EXPORT_FUNC __declspec(dllexport)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top