Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for iuml (0.06 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaModuleTest.groovy

            def iml = Mock(IdeaModuleIml)
            def module = TestUtil.newInstance(IdeaModule, moduleProject, iml)
            expect:
            module.languageLevel == null
        }
    
        def "target bytecode version is null for non java projects"() {
            given:
            project.getPlugins().apply(JavaPlugin)
            project.getPlugins().apply(IdeaPlugin)
            def iml = Mock(IdeaModuleIml)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaSourcesAndJavadocJarsIntegrationTest.groovy

            IdeaModuleFixture iml =  parseIml("root.iml")
            def libraryEntry = iml.dependencies.libraries.find { it.jarName.startsWith(apiJarPrefix) }
            assert libraryEntry != null : "gradle API jar not found"
            return libraryEntry
        }
    
        void ideFileContainsNoSourcesAndJavadocEntry() {
            IdeaModuleFixture iml =  parseIml("root.iml")
            iml.dependencies.libraries.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.ipr.xml

      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
          <module fileurl="file://$PROJECT_DIR$/api/api.iml" filepath="$PROJECT_DIR$/api/api.iml"/>
          <module fileurl="file://$PROJECT_DIR$/webservice/webservice.iml" filepath="$PROJECT_DIR$/webservice/webservice.iml"/>
        </modules>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.ipr.xml

        <modules>
          <module fileurl="file://$PROJECT_DIR$/../top-level.iml" filepath="$PROJECT_DIR$/../top-level.iml"/>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
          <module fileurl="file://$PROJECT_DIR$/../a child project/a_child.iml" filepath="$PROJECT_DIR$/../a child project/a_child.iml"/>
        </modules>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            iml('root').languageLevel == null
            iml('child1').languageLevel == null
            iml('child2').languageLevel == null
            iml('child3').languageLevel == null
        }
    
        def getIpr() {
            return IdeaFixtures.parseIpr(file("root.ipr"))
        }
    
        def iml(String name = 'root') {
            if (name == 'root') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaCompositeBuildIntegrationTest.groovy

                '$PROJECT_DIR$/api/root-api.iml',
                '$PROJECT_DIR$/shared/shared.iml',
                '$PROJECT_DIR$/shared/api/shared-api.iml',
                '$PROJECT_DIR$/shared/model/model.iml',
                '$PROJECT_DIR$/util/util.iml',
                '$PROJECT_DIR$/other/other.iml')
    
            def apiDependencies = parseIml(file('api/root-api.iml')).dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithASubProjectThatDoesNotHaveTheIdeaPluginApplied/expectedFiles/root.ipr.xml

      </component>
      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
          <module fileurl="file://$PROJECT_DIR$/a/a.iml" filepath="$PROJECT_DIR$/a/a.iml"/>
        </modules>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. .gitignore

    !/.idea/misc.xml
    !/.idea/codeStyles
    !/.idea/inspectionProfiles
    !/.idea/icon.png
    !/.idea/icon_dark.png
    */**/.idea
    */**/.shelf
    .shelf
    /*.iml
    /*/*.iml
    /*/*/*.iml
    /*/*/*/*.iml
    /*/*/*/*/*.iml
    /out
    /*/out
    /*/*/out
    /*/*/*/out
    /*/*/*/*/out
    /.teamcity/target
    /gradle.ipr
    /gradle.iws
    
    # Eclipse
    # -------
    *.classpath
    *.project
    *.settings
    /bin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaLifecycleIntegrationTest.groovy

        protected String getConfiguredModule() {
            return "idea.module"
        }
    
        @Override
        protected String projectName(String path) {
            File iml = file(path).listFiles().find { it.name.endsWith("iml") }
            assert iml != null
            return iml.name - ".iml"
        }
    
        @Override
        String[] getGenerationTaskNames(String projectPath) {
            def taskNames = []
            if (projectPath == ":") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

        private final IdeaModuleIml iml;
        private final Project project;
        private PathFactory pathFactory;
        private boolean offline;
        private Map<String, Iterable<File>> singleEntryLibraries;
    
        @Inject
        public IdeaModule(Project project, IdeaModuleIml iml) {
            this.project = project;
            this.iml = iml;
    
            this.testSources = project.getObjects().fileCollection();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top