Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 86 for buildResult (1.1 sec)

  1. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

            baselineResults.results.addAll(results.buildResult(name))
            return baselineResults
        }
    
        protected static BaselineVersion buildShiftedResults(CrossBuildPerformanceResults results, String name, int maxPercentageShift) {
            def baselineResults = new BaselineVersion(name)
            baselineResults.results.name = name
            def rawResults = results.buildResult(name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.flow.services
    
    import org.gradle.BuildAdapter
    import org.gradle.BuildResult
    import org.gradle.api.Action
    import org.gradle.api.NonExtensible
    import org.gradle.api.flow.FlowAction
    import org.gradle.api.flow.FlowActionSpec
    import org.gradle.api.flow.FlowParameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

            CrossBuildPerformanceResults result1  = crossBuildResults(startTime: 100)
            result1.buildResult(info1).addAll(measuredOperations([1]))
    
            BuildDisplayInfo info2 = buildDisplayInfo('build2')
            CrossBuildPerformanceResults result2  = crossBuildResults(startTime: 200)
            result1.buildResult(info2).addAll(measuredOperations([2]))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/CancellableConsumerConnectionTest.groovy

            1 * target.run(_, _, parameters) >> { InternalBuildAction protocolAction, InternalCancellationToken cancel, def params ->
                def actionResult = protocolAction.execute(buildController)
                return Stub(BuildResult) {
                    getModel() >> actionResult
                }
            }
            1 * action.execute({ it instanceof BuildController }) >> 'result'
        }
    
        def "adapts build action failure"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/BuildAdapter.java

        @Override
        public void projectsLoaded(Gradle gradle) {
        }
    
        @Override
        public void projectsEvaluated(Gradle gradle) {
        }
    
        @Deprecated
        @Override
        public void buildFinished(BuildResult result) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 22 05:10:24 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

    import org.gradle.internal.scan.config.fixtures.ApplyDevelocityPluginFixture
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.testkit.runner.BuildResult
    import org.gradle.testkit.runner.TaskOutcome
    import org.gradle.testkit.runner.internal.ToolingApiGradleExecutor
    import org.junit.Rule
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerMechanicalFailureIntegrationTest.groovy

            def t = thrown UnexpectedBuildFailure
            t.message.contains("Unknown command-line option '--unknown'.")
            t.message.contains('Problem configuring task :helloWorld from command line.')
            def result = t.buildResult
            result.output.contains('BUILD FAILED')
            result.output.contains("Unknown command-line option '--unknown'.")
            result.output.contains("Problem configuring task :helloWorld from command line.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildControllerVersion2.java

         * @throws BuildExceptionVersion1 On build failure.
         * @throws InternalUnsupportedModelException When the requested model is not supported.
         * @since 4.4
         */
        BuildResult<?> getModel(Object target, ModelIdentifier modelIdentifier, Object parameter) throws BuildExceptionVersion1,
            InternalUnsupportedModelException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalParameterAcceptingConnection.java

         * @throws InternalBuildCancelledException When the operation was cancelled before it could complete.
         * @throws IllegalStateException When this connection has been stopped.
         * @since 4.4
         */
        <T> BuildResult<T> run(InternalBuildActionVersion2<T> action,
                               InternalCancellationToken cancellationToken,
                               BuildParameters operationParameters) throws
            BuildExceptionVersion1,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/BuildListener.java

         * @deprecated This method is not supported when configuration caching is enabled.
         * @see FlowProviders#getBuildWorkResult()
         */
        @Deprecated
        void buildFinished(BuildResult result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top