Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for compilerConfig (0.19 sec)

  1. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

     *
     * Such source roots are either [KotlinSourceRoot] or [JavaSourceRoot], and thus
     * this util collects all `.kt` and `.java` files under source roots.
     */
    internal fun getSourceFilePaths(
        compilerConfig: CompilerConfiguration,
        includeDirectoryRoot: Boolean = false,
    ): Set<Path> {
        return buildSet {
            compilerConfig.javaSourceRoots.forEach { srcRoot ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/HelloWorldApp.java

        public String compilerArgs(String arg) {
            return compilerConfig("args", arg);
        }
    
        public String compilerDefine(String define) {
            return compilerConfig("define", define);
        }
    
        public String compilerDefine(String define, String value) {
            return compilerConfig("define", define, value);
        }
    
        private String compilerConfig(String action, String... args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaProjectFixture.groovy

                return ipr.component."@project-jdk-name"
            }
            return null
        }
    
        def getBytecodeTargetLevel() {
            def compilerConfig = ipr.component.find { it.@name == "CompilerConfiguration" }
            return compilerConfig.bytecodeTargetLevel
        }
    
        def getLibraryTable() {
            return ipr.component.find {
                it.@name == "libraryTable"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

                dependencies {
                    compile 'group:projectA:1.0', 'group:projectB:1.0'
                }
                task listJars {
                    def compileConfig = configurations.compile
                    doLast {
                        assert compileConfig.collect { it.name } == ['projectA-1.0.jar', 'projectB-1.0.jar']
                    }
                }
            """
    
            when:
            moduleA.ivy.expectDownload()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

                                        canBeConsumed = false
                                        canBeResolved = false
                                    }
                                    def compileConfig = p.configurations.create("compile$baseName") {
                                        extendsFrom p.configurations.implementation
                                        assert canBeConsumed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top