Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for iml (0.04 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithAnEmptyProject/expectedFiles/root.ipr.xml

        <option name="LOCALE"/>
        <option name="OPEN_IN_BROWSER" value="true"/>
      </component>
      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
        </modules>
      </component>
      <component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true" project-jdk-type="JavaSDK" assert-jdk-15="true" project-jdk-name="1.6">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.GenerateIdeaModule.xml

                    <td/>
                </tr>
                <tr>
                    <td>outputFile</td>
                    <td><literal><replaceable>${project.projectDir}</replaceable>/<replaceable>${project.name}</replaceable>.iml</literal>
                        (sometimes the <replaceable>project.name</replaceable> is prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. .tm_properties

    projectDirectory = "$CWD"
    exclude = "{**/build/{classes,distributions,repo,integ test,timestamp.txt,libs,tmp,*resources,checkstyle,distDocs,samples,snippets,src,stylesheets},gradlew,*.{iml,ipr,iws,bat},intTestHomeDir,out}"
    softTabs = true
    tabSize = 4
    
    TM_JAVA_SOURCE_FOLDER_REGEX=src|groovy|java|test|unit|integration|functional
    
    [ "**/build/reports/tests" ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 15:17:22 UTC 2011
    - 382 bytes
    - Viewed (0)
  4. .gitignore

    /fess-crawler*/.settings/
    /fess-crawler*/dependency-reduced-pom.xml
    /fess-crawler*/dbflute_crawler/log/*.log
    /fess-crawler*/dbflute_crawler/schema/project-schema-robot.xml
    /fess-crawler/phantomjsdriver.log
    .project
    .idea
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Mar 03 04:40:04 UTC 2016
    - 367 bytes
    - Viewed (0)
  5. .gitignore

    .classpath
    .project
    .settings
    .gradle
    eclipsebin
    
    bin
    gen
    build
    out
    lib
    generated
    
    target
    pom.xml.*
    release.properties
    local.properties
    
    .idea
    *.iml
    *.ipr
    *.iws
    *.log
    classes
    
    obj
    
    .DS_Store
    
    # Special Mkdocs files
    docs/4.x
    docs/changelog.md
    docs/contributing.md
    docs/index.md
    
    # jenv
    /.java-version
    /site/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 10 11:52:12 UTC 2022
    - 337 bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

            project.idea.module.outputFile == project.file("test-project.iml")
        }
    
        def "adds extension to child project"() {
            when:
            applyPluginToProjects()
    
            then:
            childProject.idea instanceof IdeaModel
            childProject.idea.project == null
            childProject.idea.module.outputFile == childProject.file("child.iml")
        }
    
        def "adds 'ideaProject' task to root project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. .gitignore

    /tensorflow/lite/gen/**
    /tensorflow/lite/tools/make/downloads/**
    /tensorflow/lite/tools/make/gen/**
    /api_init_files_list.txt
    /estimator_api_init_files_list.txt
    *.whl
    
    # Android
    .gradle
    .idea
    *.iml
    local.properties
    gradleBuild
    
    # iOS
    *.pbxproj
    *.xcworkspace
    /*.podspec
    /tensorflow/lite/**/coreml/**/BUILD
    /tensorflow/lite/**/ios/BUILD
    /tensorflow/lite/**/objc/BUILD
    /tensorflow/lite/**/swift/BUILD
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 22:28:59 UTC 2024
    - 934 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top