Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ipr (0.02 sec)

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

            ipr.bytecodeTargetLevel.module.find { it.@name == "child1" }.@target == "1.6"
            ipr.bytecodeTargetLevel.module.find { it.@name == "child2" }.@target == "1.5"
            !ipr.bytecodeTargetLevel.module.find { it.@name == "child3" }
    
            when:
            succeeds "idea"
    
            then:
            ipr.bytecodeTargetLevel.children().size() == 3
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

     *     id 'java'
     *     id 'idea'
     * }
     *
     * idea {
     *   project {
     *     ipr {
     *       //you can tinker with the output *.ipr file before it's written out
     *       withXml {
     *         def node = it.asNode()
     *         node.appendNode('iLove', 'tinkering with the output *.ipr file!')
     *       }
     *
     *       //closure executed after *.ipr content is loaded from existing file
     *       //but before gradle build information is merged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

                }
            """
    
            //given
            executer.withTasks('idea').run()
            def projectContent = getFile([:], 'master.ipr').text
            def moduleContent = getFile([:], 'master.iml').text
    
            executer.withTasks('idea').run()
            def projectContentAfterMerge = getFile([:], 'master.ipr').text
            def moduleContentAfterMerge = getFile([:], 'master.iml').text
    
            //then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

        }
    
        @Override
        protected void onApply(final Project project) {
            getLifecycleTask().configure(withDescription("Generates IDEA project files (IML, IPR, IWS)"));
            getCleanTask().configure(withDescription("Cleans IDEA project files (IML, IPR)"));
    
            ideaModel = project.getExtensions().create("idea", IdeaModel.class);
    
            configureIdeaWorkspace(project);
            configureIdeaProject(project);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

             'master-api.iml',
             'master-util.iml'].each {
                assert moduleFileNames.contains(it)
            }
        }
    
        List parseIprModules() {
            def ipr = parseFile(project: '.', "master.ipr")
            ipr******@****.***t {
                it.text().replaceAll(/.*\//, "")
            }
        }
    
        @Test
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import static com.google.common.base.Strings.isNullOrEmpty;
    
    /**
     * Represents the customizable elements of an ipr (via XML hooks everything of the ipr is customizable).
     */
    public class Project extends XmlPersistableConfigurationObject {
    
        private final PathFactory pathFactory;
        private List<IdeaModule> modules;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

                """
            }
        }
    
        def idea(TestFile build = buildA) {
            executer.inDirectory(build)
            succeeds(":idea")
        }
    
        def ipr(TestFile projectDir = buildA) {
            def iprFile = projectDir.file(projectDir.name + ".ipr")
            assert iprFile.exists()
            return IdeaFixtures.parseIpr(iprFile)
        }
    
        def iml(TestFile projectDir = buildA) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. pilot/pkg/status/distribution/reporter.go

    	out := Report{
    		Reporter:            r.PodName,
    		DataPlaneCount:      len(r.status),
    		InProgressResources: map[string]int{},
    	}
    	// for every resource in flight
    	for _, ipr := range r.inProgressResources {
    		res := ipr.Resource
    		key := res.String()
    		// for every version (nonce) of the config currently in play
    		for nonce, dataplanes := range r.reverseStatus {
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    Removes the IDEA workspace file
    
    `ideaProject` — link:{groovyDslPath}/org.gradle.plugins.ide.idea.GenerateIdeaProject.html[GenerateIdeaProject]::
    Generates the `.ipr` file. This task is only added to the root project.
    
    `ideaModule` — link:{groovyDslPath}/org.gradle.plugins.ide.idea.GenerateIdeaModule.html[GenerateIdeaModule]::
    Generates the `.iml` file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

            this.pathVariables = pathVariables;
        }
    
        /**
         * The JDK to use for this module.
         * If {@code null}, the value of the existing or default ipr XML (inherited) is used.
         * If it is set to <code>inherited</code>, the project SDK is used.
         * Otherwise the SDK for the corresponding value of java version is used for this module.
         * <p>
    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