Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for librarySources (0.18 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            given:
            new SourceFile(app.sourceType, "hello.h", app.libraryHeader.content).writeToDir(file("src/hello"))
            app.librarySources.each { it.writeToDir(file("src/hello")) }
            new SourceFile(app.sourceType, "common.h", app.commonHeader.content).writeToDir(file("src/hello"))
    
            when:
            buildFile << preCompiledHeaderComponent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "locates prebuilt library in another project"() {
            given:
            app.executable.writeSources(file("projectA/src/main"))
            app.librarySources*.writeToDir(file("projectA/src/main"))
            app.libraryHeader.writeToDir(file("projectB/libs/src/hello"))
    
            and:
            settingsFile.text = "include ':projectA', ':projectB'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            sourceFile = app.mainSource.writeToDir(file("src/main"))
            sharedHeaderFile = app.libraryHeader.writeToDir(file("src/main"))
            commonHeaderFile = app.commonHeader.writeToDir(file("src/main"))
            app.librarySources.each {
                otherSourceFiles << it.writeToDir(file("src/main"))
            }
            otherHeaderFile = file("src/main/headers/other.h") << """
                // Dummy header file
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            sourceFile = app.mainSource.writeToDir(file("src/main"))
            headerFile = app.libraryHeader.writeToDir(file("src/hello"))
            commonHeaderFile = app.commonHeader.writeToDir(file("src/hello"))
            app.librarySources.each {
                librarySourceFiles << it.writeToDir(file("src/hello"))
            }
        }
    
        @ToBeFixedForConfigurationCache
        def "does not re-execute build with no change"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            when (this) {
                is KtLibrarySourceModule -> {
                    add(binaryLibrary)
                }
                is KtLibraryModule -> {
                    addIfNotNull(librarySources)
                }
            }
        }
    
        private fun KtBinaryModule.getJavaRoots(
            environment: KotlinCoreProjectEnvironment,
        ): List<JavaRoot> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. 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)
  7. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisLibrarySourceModuleResolveDanglingFileReferenceTestGenerated.java

        return AnalysisApiFirTestConfiguratorFactory.INSTANCE.createConfigurator(
          new AnalysisApiTestConfiguratorFactoryData(
            FrontendKind.Fir,
            TestModuleKind.LibrarySource,
            AnalysisSessionMode.Normal,
            AnalysisApiMode.Ide
          )
        );
      }
    
      @Test
      public void testAllFilesPresentInDanglingFileReferenceResolve() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisLibrarySourceModuleCompilerFacilityTestGenerated.java

        return AnalysisApiFirTestConfiguratorFactory.INSTANCE.createConfigurator(
          new AnalysisApiTestConfiguratorFactoryData(
            FrontendKind.Fir,
            TestModuleKind.LibrarySource,
            AnalysisSessionMode.Normal,
            AnalysisApiMode.Ide
          )
        );
      }
    
      @Test
      public void testAllFilesPresentInCompilation() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top