Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for Ide (0.14 sec)

  1. .github/CODEOWNERS

    .github/workflows/gitstream.yml     @tresat
    
    # IDE Experience team
    platforms/ide/                    @gradle/bt-ide-experience
    # Eventually be moved to the core platform.
    # Currently heavily developed by the bt-ide-experience team.
    platforms/ide/problems/           @gradle/bt-ide-experience
    platforms/ide/ide-native/         @gradle/bt-ide-experience @gradle/bt-native-maintainers
    
    # Documentation
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Tue Apr 09 09:44:00 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  2. .teamcity/subprojects.json

      },
      {
        "name": "ide",
        "path": "platforms/ide/ide",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "ide-native",
        "path": "platforms/ide/ide-native",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "ide-plugins",
        "path": "platforms/ide/ide-plugins",
    Json
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Tue Apr 16 15:08:47 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  3. architecture/README.md

        style core fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
    
        documentation["documentation module"]
        style documentation stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
        ide["ide module"]
        style ide stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
        subgraph software["software platform"]
        end
        style software fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
        software --> core
    
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Feb 22 01:31:52 GMT 2024
    - 2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

                    getContributedFunctions(name, NoLookupLocation.FROM_IDE).isNotEmpty()
                }
            }
    
            override fun getVariableNames(): Set<Name> {
                return allMemberScope.getVariableNames().filterTo(mutableSetOf()) { name ->
                    getContributedVariables(name, NoLookupLocation.FROM_IDE).isNotEmpty()
                }
            }
    
    Plain Text
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Tue Oct 10 13:37:59 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  5. build-logic/integration-testing/build.gradle.kts

    gradlePlugin {
        plugins {
            register("androidStudioProvisioning") {
                id = "gradlebuild.android-studio-provisioning"
                implementationClass = "gradlebuild.integrationtests.ide.AndroidStudioProvisioningPlugin"
            }
        }
    }
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":cleanup"))
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Sat Jan 06 17:21:17 GMT 2024
    - 675 bytes
    - Viewed (0)
  6. ChangeLog.md

    - [`KTIJ-25304`](https://youtrack.jetbrains.com/issue/KTIJ-25304) Move IDE Extension Points from compiler.xml to the IDE repository
    - [`KTIJ-24893`](https://youtrack.jetbrains.com/issue/KTIJ-24893) K2 IDE: Serializable plugin causes infinite resolve recursion
    
    ### IDE. Multiplatform
    
    Plain Text
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
  7. maven-compat/src/main/java/org/apache/maven/repository/LocalArtifactRepository.java

    /**
     * LocalArtifactRepository
     */
    @Deprecated
    public abstract class LocalArtifactRepository extends MavenArtifactRepository {
        public static final String IDE_WORKSPACE = "ide-workspace";
    
        public abstract Artifact find(Artifact artifact);
    
        public abstract boolean hasLocalMetadata();
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  8. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

                  files=".*[/\\]javascript[/\\].+"/>
    
        <!-- These packages are duplicated in ide and ide-plugins, don't require a package-info.java in each place -->
        <suppress checks="JavadocPackage"
                  files=".*[/\\]platforms[/\\]ide[/\\]ide-plugins[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]plugins[/\\]ide[/\\]eclipse[/\\][^/\\]+"/>
    
        <!-- Protocol types may only define constants in interfaces -->
    XML
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Apr 11 10:51:28 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/tests/org/jetbrains/kotlin/analysis/api/fe10/test/configurator/AnalysisApiFe10TestConfiguratorFactory.kt

            return when {
                data.frontend != FrontendKind.Fe10 -> false
                data.analysisSessionMode != AnalysisSessionMode.Normal -> false
                data.analysisApiMode != AnalysisApiMode.Ide -> false
                else -> when (data.moduleKind) {
                    TestModuleKind.Source -> {
                        true
                    }
    
                    TestModuleKind.ScriptSource,
    Plain Text
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Mon Feb 26 21:57:23 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/test/kotlin/okhttp3/testing/PlatformRuleTest.kt

    package okhttp3.testing
    
    import okhttp3.internal.platform.Platform
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    /**
     * Sanity test for checking which environment and IDE is picking up.
     */
    class PlatformRuleTest {
      @RegisterExtension @JvmField
      val platform = PlatformRule()
    
      @Test
      fun testMode() {
        println(PlatformRule.getPlatformSystemProperty())
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 1.3K bytes
    - Viewed (0)
Back to top