Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,171 for TO (0.01 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .github/workflows/upgrade-to-latest-wrapper.yml

              fetch-depth: 0
          - name: Setup java
            uses: actions/setup-java@v5
            with:
              distribution: temurin
              java-version: 17
          - name: Update Gradle to latest nightly and push to devprod/upgrade-to-latest-wrapper
            run: |
              set -eu
              git config --global user.email "******@****.***"
              git config --global user.name "GitHub Action"
    
              git reset origin/master --hard
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Nov 20 22:15:20 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  2. .github/workflows/auto-assign-pr-to-author.yml

    name: 'Auto Assign PR to Author'
    on:
      pull_request:
        types: [opened]
    
    permissions: {}
    
    jobs:
      add-reviews:
        permissions:
          contents: read  # for kentaro-m/auto-assign-action to fetch config file
          pull-requests: write  # for kentaro-m/auto-assign-action to assign PR reviewers
        runs-on: ubuntu-latest
        steps:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 20 22:04:14 GMT 2026
    - 381 bytes
    - Click Count (0)
  3. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    ## Status
    
    - ACCEPTED on 2024-01-12
    
    ## Context
    
    Gradle's public API requires equal access from all JVM-based languages.
    Kotlin, Groovy, Java, and other JVM-based languages should be able to use the Gradle API without relying on another language's standard library.
    
    Historically, Gradle has shipped with some Groovy types in very prominent APIs.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  4. architecture/standards/0008-use-nullaway.md

    * Public API nullability annotations become closer to reality.
    * Java compilation of Gradle code suffers from small performance penalty (up to 10%).
    * Time has to be allocated to clean up existing projects.
    * One has to write NullAway-conformant code even when hacking.
    * Some patterns used to satisfy NullAway can be slightly more verbose.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4K bytes
    - Click Count (0)
  5. README.md

    - **[Gradle Community Resources](https://community.gradle.org/resources/)**: Discover a range of resources, tutorials, and guides to support your Gradle journey, from foundational concepts to advanced practices.
    
    ---
    
    ### 💬 **Community Support & Resources**
    
    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)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractJavaNullabilityChangesTest.kt

                    "Field finalField: From non-nullable to nullable breaking change.",
                    "Method com.example.Source.foo(): From non-null returning to null returning breaking change."
                )
                assertHasNoWarning()
                assertHasNoInformation()
            }
        }
    
        @Test
        fun `from null accepting to non-null accepting is breaking`() {
    
            checkNotBinaryCompatibleJava(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 04 09:55:47 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  7. architecture/standards/0004-use-a-platform-architecture.md

    Provides build logic, libraries, test suites and infrastructure to support developing and releasing Gradle.
    
    #### Documentation
    
    Provides cross-cutting Gradle documentation and samples, along with the infrastructure to write, test, publish and host the documentation.
    
    ## Consequences
    
    - Assign ownership of each architecture module to one team.
    - Assign each source file to one architecture module.
    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)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.java

     */
    public abstract class Javadocs {
        /**
         * Link to Java API to use when generating Javadoc
         */
        public abstract Property<URI> getJavaApi();
    
        /**
         * Package list of the Java API used to generate Javadoc offline
         */
        public abstract DirectoryProperty getJavaPackageListLoc();
    
        /**
         * Link to Groovy API to use when generating Javadoc
         */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Aug 21 16:24:54 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  9. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt

         */
        val worker: Property<Boolean>
        /**
         * Reduces a map of boolean flag properties to a single provider by applying the given
         * combiner function to the corresponding values of the properties that are true.
         *
         * @param flags The map of boolean properties mapped to their values.
         * @param combiner The function to combine the values of the true properties.
         *
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  10. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

    name: Bug Report
    description: Create a report to help us improve
    labels: [ "a:bug", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please follow the instructions below.
            We receive dozens of issues every week, so to stay productive, we will close issues that don't provide enough information.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Sep 09 14:48:49 GMT 2024
    - 3K bytes
    - Click Count (1)
Back to Top