Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for iml (0.02 sec)

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

            when:
            childProject.idea.module.name = "foo"
    
            then:
            childProject.idea.module.name == "foo"
            childProject.ideaModule.outputFile.name == "foo.iml"
            childProject.ideaModule.outputFile.parentFile == existingOutputFolder
        }
    
        private applyPluginToProjects() {
            project.apply plugin: IdeaPlugin
            childProject.apply plugin: IdeaPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModuleIml.java

        private File generateTo;
    
        public IdeaModuleIml(XmlTransformer xmlTransformer, File generateTo) {
            super(xmlTransformer);
            this.generateTo = generateTo;
        }
    
        /**
         * Folder where the *.iml file will be generated to
         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public File getGenerateTo() {
            return generateTo;
        }
    
        public void setGenerateTo(File generateTo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaSourceDirTypesIntegrationTests.groovy

            when:
            succeeds ":idea"
    
            then:
            result.assertTasksExecuted(":ideaModule", ":ideaProject", ":ideaWorkspace", ":idea")
    
            def moduleFixture = parseIml(file ( 'root.iml'))
            def sources = moduleFixture.getContent().getProperty("sources")
            def integTestSource = sources.find { s -> s.url == 'file://$MODULE_DIR$/src/integTest/java' }
            assert integTestSource.isTestSource
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. .gitignore

    **/*.swp
    cover.out
    *~
    minio
    !*/
    site/
    **/*.test
    **/*.sublime-workspace
    /.idea/
    /Minio.iml
    **/access.log
    vendor/
    .DS_Store
    *.syso
    coverage.txt
    .vscode/
    *.tar.bz2
    parts/
    prime/
    stage/
    .sia_temp/
    config.json
    node_modules/
    mc.*
    s3-check-md5*
    xl-meta*
    healing-*
    inspect*.zip
    200M*
    hash-set
    minio.RELEASE*
    mc
    nancy
    inspects/*
    .bin/
    *.gz
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  5. .gitignore

    # git history files
    .history_rewritten_*
    # Eclipse artifacts
    .project
    .pydevproject
    #Vagrant
    tools/vagrant/.vagrant/
    # Intellij
    *.iml
    .idea/
    .run/
    # Visual Studio Code
    .vscode/
    # Bazel
    /bazel-*
    # vi swap files
    .*.swp
    # vi backups
    *.bak
    # common backups
    *~
    # python artifacts
    *.pyc
    # pilot
    pilot/pkg/kube/config
    pilot/pkg/proxy/envoy/envoy
    # lint
    lintconfig.gen.json
    .istiorc
    .istiorc.mk
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Path.java

     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model;
    
    import com.google.common.base.Objects;
    
    /**
     * Represents a path in a format as used often in ipr and iml files.
     */
    public class Path {
    
        private final String url;
        private final String relPath;
        private final String canonicalUrl;
    
        public Path(String url) {
            this(url, url, null);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiBuildIntegrationTest.groovy

        }
    
        @Override
        IdeaModuleFixture project(TestFile projectDir, String ideProjectName) {
            return IdeaFixtures.parseIml(projectDir.file(ideProjectName + ".iml"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. .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)
  10. 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)
Back to top