Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,080 for Builds (0.1 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

            private static final String FLAKINESS_RATE_TITLE = "Flakiness rate of a scenario is the number of times the scenario had a regression of an improvement with more than 99.9% " +
                " in the flakiness detection builds divided by the total number of runs of the scenario.";
            private static final String FAILURE_THRESHOLD_TITLE = "The failure threshold of flaky scenario, if a flaky scenario performance test's difference is higher than this value, " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

                withArgument("--parallel")
                vfsLogs = enableVerboseVfsLogs()
                inDirectory(rootProject)
            }
        }
    
        def "file watching works with multiple builds on the same daemon"() {
            def numberOfChangesBetweenBuilds = maxFileChangesWithoutOverflow
            int numberOfRuns = 50
    
            int numberOfOverflows = 0
    
            when:
            succeeds("assemble")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            when:
            def build = executer.withTasks("help").withArguments("--info").start()
    
            then:
            build.waitForFinish()
    
            and:
            daemons.daemons.size() == 2
    
            and:
            !build.standardOutput.contains(DaemonMessages.WAITING_ON_CANCELED)
        }
    
        def "starts a new daemon when daemons with canceled builds do not become available"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

         * This is the behavior in composite builds.
         */
        abstract boolean isAutoDependencySubstitution();
    
        def "project (#projectDep) vs external (#transitiveDep) resolves to (#winner), when preferProjectModules=#preferProjectModules and depSubstitution=#depSubstitution"() {
            given:
            //required for composite builds
            buildTestFixture.withBuildInSubDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/build.gradle.kts

    }
    
    // You can have a faster feedback loop by running `configuration-cache-report` as an included build
    // See https://github.com/gradle/configuration-cache-report#development-with-gradlegradle-and-composite-build
    dependencies {
        configurationCacheReportPath(libs.configurationCacheReport)
    }
    
    tasks.processResources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WaitAtEndOfBuildFixture.groovy

            """.stripIndent()
        }
    
        /**
         * Generates build logic to ensure builds last for a given minimum time.
         *
         * This is used to ensure that the lastModified() timestamps actually change in between builds.
         * If the build is very fast, the timestamp of the file will not change and the JDK file watch service won't see the change.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/initialization/definition/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Types related to the build definition for included builds.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 05:01:16 UTC 2018
    - 737 bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

                    }
                    configurations['default'].outgoing.artifact(jar)
                }
            '''
            fixture.prepare()
        }
    
        @ToBeFixedForConfigurationCache
        def "selects and builds from master for latest.integration selector"() {
            given:
            buildFile << """
                dependencies { compile 'test:test:latest.integration' }
            """
            repo.commit("v1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

        }
    
        /**
         * Pause between builds for the following reasons:
         *
         * <ul>
         * <li>better simulate a normal development lifecycle where builds are rarely executed
         * back-to-back, as there is typically some work being done between the builds,</li>
         * <li>give file system events a chance to arrive; otherwise we might detect them during
         * the build, and invalidating the VFS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIncludedBuildIntegrationTest.groovy

    class SourceDependencyIncludedBuildIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        GitFileRepository repo = new GitFileRepository('buildB', temporaryFolder.getTestDirectory())
    
        def "source dependency cannot (yet) define any included builds"() {
            settingsFile << """
                rootProject.name = 'buildA'
                sourceControl {
                    vcsMappings {
                        withModule("org.test:buildB") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top