Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for iprm (0.04 sec)

  1. 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)
  2. .gitignore

    # Maven
    target/
    *.ser
    *.ec
    .mvn/wrapper/maven-wrapper.jar
    
    # IntelliJ Idea
    .idea/
    out/
    *.ipr
    *.iws
    *.iml
    
    # Eclipse
    .classpath
    .project
    .settings/
    .metadata/
    
    # OS X
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 16:57:55 UTC 2023
    - 176 bytes
    - Viewed (0)
  3. cni/pkg/install/testdata/list-with-istio.conflist

        {
          "args": {
            "labels": {
              "appVersion": "1.0"
            }
          },
          "bridge": "cni0",
          "dns": {
            "nameservers": [
              "10.1.0.1"
            ]
          },
          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 724 bytes
    - Viewed (0)
  4. .gitignore

    **/target/**
    .project
    .classpath
    .settings/
    .svn/
    # Intellij
    *.ipr
    *.iml
    .idea
    .DS_Store
    /bootstrap
    /dependencies.xml
    .java-version
    .checkstyle
    .factorypath
    .vscode/
    repo/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 178 bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaCompositeBuildIntegrationTest.groovy

                ":shared:api:ideaModule",
                ":shared:model:ideaModule",
                ":util:ideaModule",
                ":other:ideaModule",
                ":idea")
    
            def ipr = parseIpr(file('root.ipr'))
            ipr.modules.assertHasModules('$PROJECT_DIR$/root.iml',
                '$PROJECT_DIR$/api/root-api.iml',
                '$PROJECT_DIR$/shared/shared.iml',
                '$PROJECT_DIR$/shared/api/shared-api.iml',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.GenerateIdeaProject.xml

                    <td/>
                </tr>
                <tr>
                    <td>outputFile</td>
                    <td><literal><replaceable>${project.projectDir}</replaceable>/<replaceable>${project.name}</replaceable>.ipr</literal></td>
                    <td/>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1011 bytes
    - Viewed (0)
  7. .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)
  8. .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)
  9. platforms/documentation/docs/src/snippets/ide/idea/kotlin/build.gradle.kts

    // tag::module-before-merged[]
    
    idea.module.iml {
        beforeMerged(Action<Module> {
            dependencies.clear()
        })
    }
    // end::module-before-merged[]
    
    // tag::project-before-merged[]
    
    idea.project.ipr {
        beforeMerged(Action<Project> {
            modulePaths.clear()
        })
    }
    // end::project-before-merged[]
    
    // tag::module-when-merged[]
    
    idea.module.iml {
        whenMerged(Action<Module> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaModelTest.groovy

            then:
            model.project.vcs == 'GIT'
    
            when: "configure project file"
            model.project.ipr({ fcm -> fcm.xmlTransformer } as Action<XmlFileContentMerger>)
    
            then:
            1 * xmlMerger.getXmlTransformer()
    
            when: "configure project xml"
            model.project.ipr.withXml(xmlAction)
    
            then:
            1 * xmlTransformer.addAction(xmlAction)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top