Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Change (0.12 sec)

  1. CONTRIBUTING.md

    2. Accept the changes.\
    If you are sure that the changes are intentional, follow the steps described in the report.
    This includes adding the description of the changes to the `accepted-public-api-changes.json` file, and providing a reason for each change.
    You can add the changes to any place in the file, e.g. at the top.
    
    3. Make sure the file with accepted changes is sorted.\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        remoteUri = repoRoot(project).asFile.absolutePath
        // Remember to update accordingly when rebasing/squashing
        // Do not use the "Rebase and merge" nor "Squash and merge" Github buttons when merging a PR that change the baseline
        ref = '264bd7744d2e89b2708303cd56bb11bc5003fa7e'
    }
    
    // === Declarative DSL ===
    performanceTest.registerTestProject("largeEmptyMultiProjectDeclarativeDsl", JavaExecProjectGeneratorTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

            return sourceCompatibility;
        }
        
        public void setSourceCompatibility(String sourceCompatibility) {
            this.sourceCompatibility = sourceCompatibility;
        }
    } 
    ```
    and we want to change it to:
    
    ```java
    abstract class JavaCompile {
        @Input
        public Property<String> getSourceCompatibility();
    } 
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                                Scenario(
                                    "org.gradle.performance.regression.corefeature.FileSystemWatchingPerformanceTest",
                                    "assemble for non-abi change with file system watching and configuration caching"
                                ),
                                it
                            )
                        }
                    )
                )
            ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

        fun singleAbstractMethodOf(classNode: ClassNode) =
            classNode.methods.singleOrNull { it.access.run { !isStatic && isAbstract } }
    
        /**
         * Test if a method is a prime declaration or an overrides that change the signature.
         *
         * There's no way to tell from the byte code that a method overrides the signature
         * of a parent declaration other than crawling up the type hierarchy.
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // }
    // INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8));
    //
    
    // Range() returns generators providing sequences of values in a range.
    //
    // Synopsis:
    // Range(start, end)
    //   - returns a generator producing a sequence of values {start, start+1,
    //     start+2, ..., }.
    // Range(start, end, step)
    //   - returns a generator producing a sequence of values {start, start+step,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. LICENSE

          subsequently incorporated within the Work.
    
       2. Grant of Copyright License. Subject to the terms and conditions of
          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          copyright license to reproduce, prepare Derivative Works of,
          publicly display, publicly perform, sublicense, and distribute the
          Work and such Derivative Works in Source or Object form.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                    )
                ),
                equalTo("file 'displayNameOf(scriptFile)' has changed")
            )
        }
    
        @Test
        fun `build input file has been removed`() {
            val inputFile = File("input.txt")
            // no need to match a missing file hash, as long it is changed from the original one
            val missingFileHash = TestHashCodes.hashCodeFrom(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                    }
    
                    // Referent is not configured and wasn't invalidated
                    // This can be a case in an incremental sync scenario, when referrer script was changed and since re-configured,
                    // but referent wasn't changed and since wasn't configured.
                    delegate < referrer && delegate.state.isUnconfigured && !buildModelParameters.isInvalidateCoupledProjects -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/build.gradle

            }
    
            compositeBuildsDeclaredSubstitutions {
                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/declared-substitution")
                description = "Applying and testing changes in downstream dependencies without publishing."
                category = "Build organization"
            }
    
            compositeBuildsHierarchicalMultirepo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top