Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 103 for IDEs (0.06 seconds)

  1. helm/minio/.helmignore

    # negation (prefixed with !). Only one pattern per line.
    .DS_Store
    # Common VCS dirs
    .git/
    .gitignore
    .bzr/
    .bzrignore
    .hg/
    .hgignore
    .svn/
    # Common backup files
    *.swp
    *.bak
    *.tmp
    *~
    # Various IDEs
    .project
    .idea/
    *.tmproj
    # OWNERS file for Kubernetes
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 20 22:30:54 GMT 2021
    - 368 bytes
    - Click Count (0)
  2. .git-blame-ignore-revs

    #
    # Use this file by running:
    #
    #     git blame --ignore-revs-file=.git-blame-ignore-rev <file>
    #
    # or by configuring `blame.ignoreRevsFile`. The latter ought to also work
    # with IDEs such as IntelliJ.
    
    
    # Format snapshot / restore directories in server
    1afe4b914301a23fa37c41c78185b7575a431cc4
    
    # Format more snapshot / restore relate projects
    559c4e6ef4f9173bbb59043bacd0ac36c7281040
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 31 14:55:52 GMT 2021
    - 631 bytes
    - Click Count (0)
  3. .editorconfig

    # EditorConfig helps developers define and maintain consistent
    # coding styles between different editors and IDEs
    # editorconfig.org
    
    root = true
    
    [*]
    
    indent_style = space
    indent_size = 4
    
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    spelling_languages = en-US
    
    # Markdown files sometimes need trailing whitespaces.
    [*.md]
    trim_trailing_whitespace = false
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Nov 25 07:01:54 GMT 2025
    - 582 bytes
    - Click Count (0)
  4. architecture/runtimes.md

    - Tooling API client. This a library that is embedded into applications, such as IDEs or CI agents, that allows them to act as a Gradle client.
    - Worker processes. Long-running daemon processes that the Gradle daemon starts to run specific kinds of work, such as compilation or test execution.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  5. benchmarks/build.gradle

      executable = "${BuildParams.runtimeJavaHome}/bin/java"
      jvmArgs << "-Dplugins.dir=${buildDir}/plugins" << "-Dtests.index=${buildDir}/index"
      dependsOn "copyExpression", "copyPainless"
    }
    
    spotless {
      java {
        // IDEs can sometimes run annotation processors that leave files in
        // here, causing Spotless to complain. Even though this path ought not
        // to exist, exclude it anyway in order to avoid spurious failures.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 22:04:23 GMT 2021
    - 2.5K bytes
    - Click Count (0)
  6. README.md

    ---
    
    ### 🛠 **Seamless IDE & CI Integration**
    
    Gradle is built to work smoothly with a variety of Integrated Development Environments (IDEs) and Continuous Integration (CI) systems, providing extensive support for a streamlined workflow:
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 18:58:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

    // TODO unfortunately the plugins need to be downloaded in order to get the plugin.xml file. need to externalize this
    //      from the plugin archive.
    // TODO this will be the class that people get in IDEs to modify
    
    /**
     * MavenExecutionPlan
     */
    public class MavenExecutionPlan implements Iterable<ExecutionPlanItem> {
    
        /*
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  8. .gitignore

    ._*
    
    # OSX trash
    .DS_Store
    
    # Developers can store local stuff in dirs named __something
    __*
    
    # Eclipse files
    .classpath
    .project
    .settings/**
    
    # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
    .idea/
    *.iml
    
    # Vscode files
    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    .\#*
    
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Mar 17 02:28:41 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  9. architecture/standards/0004-use-a-platform-architecture.md

    #### Enterprise integration
    
    Provides cross-cutting integration with Gradle's commercial product.
    
    #### IDE integration
    
    Provides cross-cutting integration with IDEs and other tooling.
    
    #### Build infrastructure
    
    Provides build logic, libraries, test suites and infrastructure to support developing and releasing Gradle.
    
    #### Documentation
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  10. build-tools-internal/build.gradle

        because 'allows JUnit 3 and JUnit 4 tests to run'
      }
      integTestRuntimeOnly("org.junit.platform:junit-platform-launcher") {
        because 'allows tests to run from IDEs that bundle older version of launcher'
      }
    
      testImplementation platform("org.spockframework:spock-bom:2.0-M5-groovy-3.0")
      testImplementation("org.spockframework:spock-core") {
        exclude module: "groovy"
      }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
Back to Top