Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for Ide (0.18 sec)

  1. .idea/scopes/IDE.xml

    <component name="DependencyValidationManager">
    XML
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Tue Oct 24 16:22:04 GMT 2017
    - 609 bytes
    - Viewed (0)
  2. build-logic/idea/src/main/kotlin/gradlebuild.ide.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradlebuild.basics.repoRoot
    import org.gradle.plugins.ide.idea.model.IdeaProject
    import org.jetbrains.gradle.ext.CopyrightConfiguration
    import org.jetbrains.gradle.ext.ProjectSettings
    import org.jetbrains.gradle.ext.Remote
    import org.jetbrains.gradle.ext.RunConfiguration
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Jun 26 15:42:59 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  3. .idea/runConfigurations/Generate_FIR_Checker_Components_and_FIR_IDE_Diagnostics.xml

    <component name="ProjectRunConfigurationManager">
      <configuration default="false" name="Generate FIR Checker Components and FIR/IDE Diagnostics" type="GradleRunConfiguration" factoryName="Gradle" folderName="Generators">
        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
    XML
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Wed Sep 22 13:47:13 GMT 2021
    - 1.1K bytes
    - Viewed (0)
  4. .github/workflows/notify-on-rc-for-manual-test.yml

    name: IDE Experience team notifier
    run-name: Notify the IDE Experience team about new RCs for manual testing
    on:
      push:
        tags:
          - 'v*.*.*-RC1'
    
    jobs:
      send-slack-notification:
        runs-on: ubuntu-latest
        steps:
          - name: Send Slack notification about new RCs for manual testing
            id: slack
            uses: slackapi/slack-github-action@v1.23.0
            with:
              payload: |
                {
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Mar 16 08:48:39 GMT 2023
    - 1008 bytes
    - Viewed (0)
  5. 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)
  6. .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)
  7. 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)
  8. .github/workflows/slack-notifier.yml

    name: IDE Experience team notifier
    run-name: Notify the IDE Experience team about relevant issues
    on:
      issues:
        types:
          - labeled
    
    jobs:
      send-slack-notification:
        if: ${{ github.event.label.name == 'in:ide' || github.event.label.name == 'in:eclipse-plugin' || github.event.label.name == 'in:idea-plugin' || github.event.label.name == 'in:tooling-api' }}
        runs-on: ubuntu-latest
        steps:
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 04 06:43:15 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  9. .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 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 05 14:05:00 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  10. 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 21 03:35:09 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 1.2K bytes
    - Viewed (0)
Back to top