Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 942 for idea (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  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/ide/src/main/java/org/gradle/plugins/ide/idea/model/internal/GeneratedIdeaScope.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.idea.model.internal;
    
    /**
     * The classpath scopes available in IntelliJ IDEA.
     */
    public enum GeneratedIdeaScope {
        PROVIDED,
        COMPILE,
        RUNTIME,
        TEST;
    
        public static GeneratedIdeaScope nullSafeValueOf(String scope) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 948 bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirReference.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbolOrigin
    import org.jetbrains.kotlin.idea.references.KtReference
    import org.jetbrains.kotlin.idea.references.isConstructorOf
    import org.jetbrains.kotlin.idea.references.mainReference
    import org.jetbrains.kotlin.psi.KtClass
    import org.jetbrains.kotlin.psi.KtDotQualifiedExpression
    import org.jetbrains.kotlin.psi.KtImportAlias
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/groovy/settings.gradle

    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)
  9. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/tests/ideaAdditionalTestSources.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30 bytes
    - Viewed (0)
  10. .gitignore

    target/
    .settings/
    .classpath
    .project
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Thu Jun 14 07:45:22 UTC 2018
    - 45 bytes
    - Viewed (0)
Back to top