Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for iml (0.02 sec)

  1. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/AbstractIdeIntegrationTest.groovy

        protected IdeaProjectFixture parseIpr(String projectFile) {
            return IdeaFixtures.parseIpr(file(projectFile))
        }
    
        protected parseImlFile(String projectName) {
            IdeaFixtures.parseFile(file("${projectName}.iml"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. .gitignore

    .DS_Store
    
    # Developers can store local stuff in dirs named __something
    __*
    
    # Eclipse files
    .classpath
    .project
    .settings/**
    
    # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
    .idea/
    *.iml
    
    # Vscode files
    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    .\#*
    
    # Vim-related files
    [._]*.s[a-w][a-z]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleDependency.java

    import com.google.common.base.Objects;
    import com.google.common.base.Strings;
    import groovy.util.Node;
    
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * Represents an orderEntry of type module in the iml XML.
     */
    public class ModuleDependency implements Dependency {
    
        private String name;
        private String scope;
        private boolean exported;
    
        public ModuleDependency(String name, String scope) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModel.java

         */
        public void workspace(Action<? super IdeaWorkspace> action) {
            action.execute(getWorkspace());
        }
    
        /**
         * Adds path variables to be used for replacing absolute paths in resulting files (*.iml, etc.). <p> For example see docs for {@link IdeaModule}.
         *
         * @param pathVariables A map with String-&gt;File pairs.
         */
        public void pathVariables(Map<String, File> pathVariables) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.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 iml (via XML hooks everything of the iml is customizable).
     */
    public class Module extends XmlPersistableConfigurationObject {
    
        public static final String INHERITED = "inherited";
    
        private static final String CONTENT = "content";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

    import java.util.LinkedHashMap;
    import java.util.Map;
    import java.util.Set;
    
    import static com.google.common.base.Strings.isNullOrEmpty;
    
    /**
     * Represents an orderEntry of type module-library in the iml XML.
     */
    public class ModuleLibrary implements Dependency {
    
        private Set<Path> classes;
        private Set<JarDirectory> jarDirectories;
        private Set<Path> javadoc;
        private Set<Path> sources;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    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
    
    `ideaWorkspace` — link:{groovyDslPath}/org.gradle.plugins.ide.idea.GenerateIdeaWorkspace.html[GenerateIdeaWorkspace]::
    Generates the `.iws` file. This task is only added to the root project.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. .space/CODEOWNERS

    /generators/analysis-api-generator/ "Kotlin IDE Analysis Core"
    /generators/builtins/ A.Qurbonzoda Vsevolod.Tolstopyato Ilya.Gorbunov Filipp.Zhinkin
    /generators/evaluate/ "Kotlin Compiler Core"
    /generators/ide-iml-to-gradle-generator/ "Kotlin Build Infrastructure"
    /generators/interpreter/ "Kotlin Common Backend"
    /generators/main/ "Kotlin Build Infrastructure"
    /generators/nativeInteropRuntime/ "Kotlin Native"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.idea.model.IdeaModule.iml(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (IdeaModule.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top