Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 723 for produced (0.24 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/ComponentWithOutputs.java

    import org.gradle.api.file.FileCollection;
    
    /**
     * Represents a component with output files.
     *
     * @since 4.5
     */
    public interface ComponentWithOutputs extends SoftwareComponent {
        /**
         * Returns the outputs produced for this component.
         */
        FileCollection getOutputs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 985 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactory.java

     */
    public interface ClasspathElementTransformFactory {
        /**
         * Updates jar/directory content hash to account for the transform produced by this factory.
         *
         * @param hasher the hasher to modify
         */
        void applyConfigurationTo(Hasher hasher);
    
        /**
         * Returns the transformation to be applied to the given jar/directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/library-api-docs.adoc.template

    ----
    java {
        withJavadocJar()
    }
    ----
    
    .build.gradle
    [source.multi-language-sample,groovy]
    ----
    java {
        withJavadocJar()
    }
    ----
    
    
    
    The additional JAR will be produced as part of the `assemble` or `build` lifecycle tasks and will be part of the publication.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/gradle/GradlePublication.java

    import org.gradle.tooling.model.GradleModuleVersion;
    import org.gradle.tooling.model.ProjectIdentifier;
    import org.gradle.tooling.model.ProjectModel;
    
    /**
     * Represents some publication produced by a Gradle project, typically to a Maven or Ivy repository.
     *
     * @since 1.12
     */
    public interface GradlePublication extends ProjectModel {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/VariantComponentSpec.java

    /**
     * Represents a component spec that is made up of one or more mutually exclusive variants.
     */
    @Incubating
    public interface VariantComponentSpec extends ComponentSpec, VariantComponent {
        /**
         * The variants produced for this component spec.
         */
        ModelMap<BinarySpec> getBinaries();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

             */
            boolean isActionable();
    
            /**
             * If task was UP_TO_DATE or FROM_CACHE, this will convey the ID of the build that produced the outputs being reused.
             * Value will be null for any other outcome.
             *
             * This value may also be null for an UP_TO_DATE outcome where the task executed, but then decided it was UP_TO_DATE.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/IndexedCache.java

         *
         * Production of the value always happens synchronously by the calling thread. However, the implementation may update the backing store with new value synchronously or asynchronously.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/plugins/BuildDashboardPlugin.java

                @Override
                public void execute(final GenerateBuildDashboard buildDashboardTask) {
                    buildDashboardTask.setDescription("Generates a dashboard of all the reports produced by this build.");
                    buildDashboardTask.setGroup("reporting");
    
                    DirectoryReport htmlReport = buildDashboardTask.getReports().getHtml();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. src/internal/trace/raw/writer.go

    package raw
    
    import (
    	"encoding/binary"
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/version"
    )
    
    // Writer emits the wire format of a trace.
    //
    // It may not produce a byte-for-byte compatible trace from what is
    // produced by the runtime, because it may be missing extra padding
    // in the LEB128 encoding that the runtime adds but isn't necessary
    // when you know the data up-front.
    type Writer struct {
    	w     io.Writer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/TransformRegistration.java

     */
    public interface TransformRegistration {
        /**
         * Attributes that match the variant that is consumed.
         */
        ImmutableAttributes getFrom();
    
        /**
         * Attributes that match the variant that is produced.
         */
        ImmutableAttributes getTo();
    
        /**
         * Transform step for artifacts of the variant.
         */
        TransformStep getTransformStep();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top