Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for buildResult (0.47 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top