Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for Ide (0.13 sec)

  1. architecture/readme.md

    end
    style core fill:#c2e0f4,stroke:#3498db,stroke-width:2px;
    
    documentation["documentation module"]
    style documentation stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px;
    
    ide["ide module"]
    style ide stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px;
    
    subgraph software["software platform"]
    end
    style software fill:#c2e0f4,stroke:#3498db,stroke-width:2px;
    software --> core
    
    subgraph jvm["jvm platform"]
    Plain Text
    - Registered: Wed Feb 21 11:36:11 GMT 2024
    - Last Modified: Wed Feb 14 20:23:24 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. .teamcity/test-buckets.json

    					"plugins-java-library",
    					"persistent-cache",
    					"platform-base",
    					"diagnostics",
    					"ide-plugins",
    					"execution-e2e-tests"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"build-init",
    					"ide-native",
    					"ide",
    					"file-collections",
    					"version-control",
    					"file-watching",
    					"jacoco",
    Json
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Apr 01 00:30:22 GMT 2024
    - 49.5K bytes
    - Viewed (0)
  3. .cm/plugins/filters/isEnabledUser/index.js

    const buildScan = ["wolfs"];
    const configuration = ["alllex"];
    const devProd = ["blindpirate"];
    const execution = [];
    const ide = ["hegyibalint", "donat", "reinsch82"];
    const jvm = ["big-guy", "ghale", "jvandort", "octylFractal", "tresat"];
    
    /**
     * @module isEnabledUser
     * @description Returns true if the username that is passed to this function is a member of the Gradle BT Team who has opted into gitStream automations.
    JavaScript
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Feb 05 22:00:34 GMT 2024
    - 923 bytes
    - Viewed (0)
  4. .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)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeIdeTest.kt

    package gradlebuild.integrationtests.tasks
    
    import org.gradle.api.tasks.CacheableTask
    
    
    /**
     * A test that provides an IDE as environment for checking IDE and Gradle behavior during synchronization process.
     * These tests are running using `forking` executor, since current Gradle distribution has to be used as a Gradle version for IDE.
     */
    @CacheableTask
    abstract class SmokeIdeTest : DistributionTest() {
        override val prefix: String = "smokeIde"
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 29 10:30:14 GMT 2023
    - 1K bytes
    - Viewed (0)
  6. .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)
  7. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

    import model.CIBuildModel
    import model.Stage
    
    class SmokeIdeTests(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Smoke Ide Tests"
        description = "Tests against IDE sync process"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        requirements {
            // These tests are usually heavy and the build time is twice on EC2 agents
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Fri Apr 05 14:05:00 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top