Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,135 for produced (0.17 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

         *
         * In the presence of overlapping outputs this might be different from
         * {@link BeforeExecutionState#getOutputFileLocationSnapshots()},
         * as this does not include overlapping outputs not produced by the work.
         */
        ImmutableSortedMap<String, FileSystemSnapshot> getOutputFilesProducedByWork();
    
        /**
         * The origin metadata of the outputs captured.
         */
        OriginMetadata getOriginMetadata();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/VerificationTask.java

     * limitations under the License.
     */
    package org.gradle.api.tasks;
    
    /**
     * A {@code VerificationTask} is a task which performs some verification of the artifacts produced by a build.
     */
    public interface VerificationTask {
        /**
         * Specifies whether the build should break when the verifications performed by this task fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    Note that the `my-app` build does not have direct dependencies on `my-utils`. Instead, it declares module dependencies on the libraries produced by `my-utils`:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsHelper.java

    import org.gradle.api.NonNullApi;
    
    import javax.annotation.Nullable;
    
    @NonNullApi
    public class InstrumentedGroovyCallsHelper {
        /**
         * Executes the given {@code callable} in the context of an entry point produced from entering a dynamically dispatched
         * call described by the {@code callableName} and {@code kind}
         * from a class identified by {@code consumerClass}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    However, if neither build inputs nor build scripts changed, the task result is effectively up-to-date: it always produces the same output.
    
    If users desire to have a unique `module` file per build invocation, it is possible to link an identifier in the produced metadata to the build that created it.
    Users can choose to enable this unique identifier in their `publication`:
    
    .Configuring the build identifier of a publication
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

         */
        <T> CalculatedValue<T> create(DisplayName displayName, Supplier<? extends T> supplier);
    
        /**
         * A convenience to create a calculated value that has already been produced.
         * <p>
         * For example, the value might have been restored from the configuration cache.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, T value);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestResultProcessor.java

         */
        @UsedByScanPlugin("test-distribution")
        void completed(Object testId, TestCompleteEvent event);
    
        /**
         * Notifies this processor that a test has produced some output.
         */
        @UsedByScanPlugin("test-distribution")
        void output(Object testId, TestOutputEvent event);
    
        /**
         * Notifies this processor that a failure has occurred in the given test.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/composite/internal/IncludedBuildTaskResource.java

     */
    
    package org.gradle.composite.internal;
    
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.execution.plan.Node;
    
    import java.util.function.Consumer;
    
    /**
     * A resource produced by a task in an included build.
     */
    public interface IncludedBuildTaskResource {
    
        enum State {
            NotScheduled(true), Scheduled(false), Success(true), Failed(true);
    
            private final boolean complete;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestTaskReports.java

    import org.gradle.api.reporting.DirectoryReport;
    import org.gradle.api.reporting.Report;
    import org.gradle.api.reporting.ReportContainer;
    import org.gradle.api.tasks.Internal;
    
    /**
     * The reports produced by the {@link Test} task.
     */
    public interface TestTaskReports extends ReportContainer<Report> {
    
        /**
         * A HTML report indicate the results of the test execution.
         *
         * @return The HTML report
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformSpec.java

         *
         * @see org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(Class, Action)
         */
        AttributeContainer getFrom();
    
        /**
         * Attributes that match the variant that is produced.
         *
         * @see org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(Class, Action)
         */
        AttributeContainer getTo();
    
        /**
         * The parameters for the transform action.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top