Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for buildResult (0.67 sec)

  1. 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)
  2. 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)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                for (BuildDisplayInfo displayInfo : results.getBuilds()) {
                    addOperations(statement, executionId, displayInfo, results.buildResult(displayInfo));
                }
                statement.executeBatch();
            }
        }
    
        private long insertExecution(Connection connection, R results) throws SQLException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

     * limitations under the License.
     */
    package org.gradle.api.invocation;
    
    import groovy.lang.Closure;
    import groovy.lang.DelegatesTo;
    import org.gradle.BuildListener;
    import org.gradle.BuildResult;
    import org.gradle.StartParameter;
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    import org.gradle.api.Project;
    import org.gradle.api.ProjectEvaluationListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.build.event;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.BuildAdapter;
    import org.gradle.BuildResult;
    import org.gradle.api.internal.GradleInternal;
    import org.gradle.api.internal.provider.ProviderInternal;
    import org.gradle.api.internal.provider.Providers;
    import org.gradle.api.provider.Provider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    [%header%autowidth,compact]
    |===
    | Feature | Minimum Version | Description
    
    | Inspecting executed tasks
    | 2.5
    | Inspecting the executed tasks, using link:{javadocPath}/org/gradle/testkit/runner/BuildResult.html#getTasks--[BuildResult.getTasks()] and similar methods.
    
    | <<#sub:test-kit-classpath-injection,Plugin classpath injection>>
    | 2.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutors.java

         * The intended use is to provide workers for the {@code buildScan.background} callbacks.
         * The jobs will be complete before {@link GradleEnterprisePluginEndOfBuildListener#buildFinished(GradleEnterprisePluginEndOfBuildListener.BuildResult)} is called.
         * <p>
         * The job may be rejected if the build is already finishing and the executor is being shut down.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalPhasedActionConnection.java

         * @throws InternalBuildCancelledException When the operation was cancelled before it could complete.
         * @throws IllegalStateException When this connection has been stopped.
         */
        BuildResult<?> run(InternalPhasedAction internalPhasedAction,
                           PhasedActionResultListener listener,
                           InternalCancellationToken cancellationToken,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top