Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,029 for ellipse (0.12 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.GenerateEclipseClasspath.xml

            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>eclipse</literal> plugins</td>
                    </tr>
                </thead>
                <tr>
                    <td>classpath</td>
                    <td><literal>project.eclipse.classpath</literal></td>
                </tr>
                <tr>
                    <td>outputFile</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 839 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.GenerateEclipseProject.xml

            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>eclipse</literal> plugins</td>
                    </tr>
                </thead>
                <tr>
                    <td>projectModel</td>
                    <td><literal>project.eclipse.project</literal></td>
                </tr>
                <tr>
                    <td>outputFile</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 838 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseWtpComponent.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>eclipse</literal> and <literal>war</literal> plugins</td>
                        <td>Default with <literal>eclipse</literal> and <literal>ear</literal> plugins</td>
                    </tr>
                </thead>
                <tr>
                    <td>sourceDirs</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseClasspath.xml

    <section>
        <section>
            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>eclipse</literal> and <literal>java</literal> plugins</td>
                    </tr>
                </thead>
                <tr>
                    <td>plusConfigurations</td>
                    <td><literal>project.configurations.testRuntime</literal></td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseProject.xml

    <section>
        <section>
            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>eclipse</literal> and <literal>java</literal> plugins</td>
                    </tr>
                </thead>
                <tr>
                    <td>name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseWtpFacet.xml

    <section>
        <section>
            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>eclipse</literal> and <literal>war</literal> plugins</td>
                    </tr>
                </thead>
                <tr>
                    <td>facets</td>
                    <td>Java and web facets.</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 880 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseJdt.xml

    <section>
        <section>
            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>eclipse</literal> and <literal>java</literal> plugins</td>
                    </tr>
                </thead>
                <tr>
                    <td>sourceCompatibility</td>
                    <td><literal>project.sourceCompatibility</literal></td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1006 bytes
    - Viewed (0)
  8. src/main/config/eclipse/formatter/java.xml

    <setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for" value="insert"/>
    <setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/>
    <setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/>
    <setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>
    <setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="1"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Sep 17 06:39:42 UTC 2017
    - 30.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ide/eclipse/kotlin/build.gradle.kts

    // tag::use-eclipse-plugin[]
    // tag::use-eclipse-wtp-plugin[]
    plugins {
        // end::use-eclipse-plugin[]
    // end::use-eclipse-wtp-plugin[]
        war
    // tag::use-eclipse-plugin[]
        eclipse
    // end::use-eclipse-plugin[]
    // tag::use-eclipse-wtp-plugin[]
        `eclipse-wtp`
    // end::use-eclipse-wtp-plugin[]
    // tag::use-eclipse-plugin[]
    // tag::use-eclipse-wtp-plugin[]
    }
    // end::use-eclipse-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ide/eclipse/groovy/build.gradle

    // tag::use-eclipse-plugin[]
    // tag::use-eclipse-wtp-plugin[]
    plugins {
        // end::use-eclipse-plugin[]
    // end::use-eclipse-wtp-plugin[]
        id 'war'
    // tag::use-eclipse-plugin[]
        id 'eclipse'
    // end::use-eclipse-plugin[]
    // tag::use-eclipse-wtp-plugin[]
        id 'eclipse-wtp'
    // end::use-eclipse-wtp-plugin[]
    // tag::use-eclipse-plugin[]
    // tag::use-eclipse-wtp-plugin[]
    }
    // end::use-eclipse-plugin[]
    // end::use-eclipse-wtp-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top