Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 108 for buildResult (0.25 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

                reporter.report(results)
            }
            return results
        }
    
        void runAllSpecifications(R results) {
            specs.each {
                def operations = results.buildResult(it.displayInfo)
                experimentRunner.run(testId, it, operations)
            }
        }
    
        protected static String determineChannel() {
            ResultsStoreHelper.determineChannel()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

                return results.getVcsCommits();
            }
    
            @Override
            public List<MeasuredOperationList> getScenarios() {
                return builds.stream().map(specification -> results.buildResult(specification.getDisplayName())).collect(Collectors.toList());
            }
    
            @Override
            public String getOperatingSystem() {
                return results.getOperatingSystem();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import groovy.lang.Closure
    import org.gradle.BuildListener
    import org.gradle.BuildResult
    import org.gradle.api.Action
    import org.gradle.api.Project
    import org.gradle.api.ProjectEvaluationListener
    import org.gradle.api.ProjectState
    import org.gradle.api.initialization.IncludedBuild
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/BuildEventsErrorIntegrationTest.groovy

            method              | params
            "settingsEvaluated" | "Settings settings"
            "projectsLoaded"    | "Gradle gradle"
            "projectsEvaluated" | "Gradle gradle"
            "buildFinished"     | "BuildResult result"
        }
    
        @UnsupportedWithConfigurationCache
        def "produces reasonable error message when build fails and Gradle.buildFinished closure also fails"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerCaptureOutputIntegrationTest.groovy

                .forwardStdOutput(standardOutput)
                .forwardStdError(standardError)
                .buildAndFail()
    
            then:
            def t = thrown UnexpectedBuildSuccess
            def result = t.buildResult
            result.output.findAll(OUT).size() == 1
            result.output.findAll(ERR).size() == 1
            standardOutput.toString().findAll(OUT).size() == 1
            standardError.toString().findAll(OUT).size() == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TestKitIntegrationTest.kt

                            build().output,
                            containsString("Ack!"))
                    }
    
                    private
                    fun build(vararg arguments: String): BuildResult =
                        GradleRunner
                            .create()
                            .withProjectDir(temporaryFolder.root)
                            .withPluginClasspath()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 10:30:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginAdapter.java

            buildOperationNotificationListenerRegistrar.register(pluginService.getBuildOperationNotificationListener());
        }
    
        private class DefaultDevelocityPluginResult implements GradleEnterprisePluginEndOfBuildListener.BuildResult {
            private final Throwable buildFailure;
    
            public DefaultDevelocityPluginResult(@Nullable Throwable buildFailure) {
                this.buildFailure = buildFailure;
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerResultIntegrationTest.groovy

    import static org.gradle.testkit.runner.TaskOutcome.SKIPPED
    import static org.gradle.testkit.runner.TaskOutcome.SUCCESS
    import static org.gradle.testkit.runner.TaskOutcome.UP_TO_DATE
    
    /**
     * Tests more intricate aspects of the BuildResult object
     */
    @InspectsExecutedTasks
    @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "Test causes builds to hang")
    class GradleRunnerResultIntegrationTest extends BaseGradleRunnerIntegrationTest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonMessageSerializerTest.groovy

            result.value.result.serializedModel.empty
            result.value.failure == null
            result.value.exception == null
    
            def buildResult = BuildActionResult.of(new SerializedPayload("header", ["hi".bytes]))
            def message2 = new Success(buildResult)
            def result2 = serialize(message2, serializer)
            result2 instanceof Success
            result2.value instanceof BuildActionResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-plugin-performance/src/performanceTest/groovy/org/gradle/performance/BuildScanPluginPerformanceTest.groovy

                }
            }
    
            when:
            def results = runner.run()
    
            then:
            def withoutResults = buildBaselineResults(results, WITHOUT_PLUGIN_LABEL)
            def withResults = results.buildResult(WITH_PLUGIN_LABEL)
            def speedStats = withoutResults.getSpeedStatsAgainst(withResults.name, withResults)
            println(speedStats)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 09:04:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top