Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for compilerLibraryName (0.15 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            assert compilerLibraryLevel
            assert compilerLibraryLevel.@value == "Project"
    
            def compilerLibraryName = facet.configuration.option.find { it.@name == "compilerLibraryName" }
            assert compilerLibraryName
            assert compilerLibraryName.@value == libraryName
        }
    
        private containsDir(path, urls) {
            urls.any { it.endsWith(path) }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

            setNodeAttribute(libraryLevel, "value", "Project");
    
            Node libraryName = findOrCreateFirstChildWithAttributeValue(configuration, "option", "name", "compilerLibraryName");
            setNodeAttribute(libraryName, "value", scalaCompilerLibrary.getName());
        }
    
        private static void setNodeAttribute(Node node, String key, String value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top