Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 736 for idea (0.14 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r62/ToolingApiIdeaLocalGroovyCrossVersionSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.tooling.r62
    
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.tooling.model.idea.IdeaProject
    import org.gradle.tooling.model.idea.IdeaSingleEntryLibraryDependency
    import org.gradle.util.GradleVersion
    import org.junit.Assume
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/plugins.xml

            <extends targetClass="org.gradle.api.Project" id="eclipse" extensionClass="org.gradle.plugins.ide.eclipse.model.EclipseModel"/>
        </plugin>
        <plugin id="idea" description="Idea Plugin">
            <extends targetClass="org.gradle.api.Project" id="idea" extensionClass="org.gradle.plugins.ide.idea.model.IdeaModel"/>
        </plugin>
        <plugin id="checkstyle" description="Checkstyle Plugin">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. .gitignore

    .vscode/
    cmake_build/
    tensorflow/contrib/cmake/_build/
    .idea/**
    /build/
    [Bb]uild/
    /build_output/
    /tensorflow/core/util/version_info.cc
    /tensorflow/python/framework/fast_tensor_util.cpp
    /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
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 22:28:59 UTC 2024
    - 934 bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressedWithHighRelativeMedianDifference()
        }
    
        def "get IDE model for IDEA"() {
            given:
            setupRunner()
            runner.toolingApi("IDEA model") {
                it.model(IdeaProject)
            }.run { builder ->
                def model = builder.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaLanguageLevel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.idea;
    
    /**
     * Language level setting for IDEA.
     *
     * @since 1.0-milestone-5
     */
    public interface IdeaLanguageLevel {
    
        /**
         * Gets the level value
         */
        String getLevel();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 838 bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/SingleEntryModuleLibrary.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model;
    
    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.LinkedHashSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModuleIml.java

     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model;
    
    import org.gradle.internal.xml.XmlTransformer;
    import org.gradle.plugins.ide.api.XmlFileContentMerger;
    
    import java.io.File;
    
    /**
     * Models the generation/parsing/merging capabilities of an IDEA module.
     * <p>
     * For examples, see docs for {@link IdeaModule}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaLanguageLevelTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model
    
    import org.gradle.api.JavaVersion
    import spock.lang.Specification
    
    class IdeaLanguageLevelTest extends Specification {
    
        def "formats language level in IDEA fancy format"() {
            expect:
            new IdeaLanguageLevel(JavaVersion.VERSION_1_3).level == "JDK_1_3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/IdeIntegrationPerformanceTest.groovy

        }
    
        @RunFor(
            @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["largeMonolithicJavaProject", "largeJavaMultiProject"])
        )
        def "idea"() {
            given:
            runner.tasksToRun = ['idea']
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ide/idea/kotlin/settings.gradle.kts

    rootProject.name = "idea"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 26 bytes
    - Viewed (0)
Back to top