Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for consumable (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

    @ServiceScope(Scope.Project.class)
    public interface RoleBasedConfigurationContainerInternal extends ConfigurationContainer {
    
        /**
         * Creates a consumable configuration which can change roles.
         */
        Configuration consumableUnlocked(String name);
    
        /**
         * Creates a consumable configuration which can change roles and executes the provided
         * {@code action} against the configuration.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/ProgressEvent.java

        /**
         * Returns the time this event was triggered.
         *
         * @return The event time, in milliseconds since the epoch.
         */
        long getEventTime();
    
        /**
         * Returns a human consumable short description of the event.
         *
         * @return The short description of the event.
         */
        String getDisplayName();
    
        /**
         * Returns the description of the operation for which progress is reported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

     * <p>
     * This test aims to mirror the actual variant selection process within Gradle, specifically when one project
     * is resolving their own configurations which in turn depend on the consumable configurations of other Gradle
     * projects. This test does not attempt to model or test the interactions with published artifacts.
     */
    class JavaEcosystemAttributeMatcherTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/Publication.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish;
    
    import org.gradle.api.Named;
    
    /**
     * A publication is a description of a consumable representation of one or more artifacts, and possibly associated metadata.
     *
     * @since 1.3
     */
    public interface Publication extends Named {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/OperatingSystem.java

     *         <td>"solaris", "sunos"</td>
     *     </tr>
     * </table>
     */
    public interface OperatingSystem extends Named {
        @Input
        @Override
        String getName();
    
        /**
         * Returns a human-consumable display name for this operating system.
         */
        @Internal
        String getDisplayName();
    
        /**
         * Is this the current OS?
         */
        @Internal
        boolean isCurrent();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    `assemble` — _lifecycle task_::
    Plugins and build authors should attach tasks that produce distributions and other consumable artifacts to this lifecycle task. For example, `jar` produces the consumable artifact for Java libraries. Attach tasks to this lifecycle task using `assemble.dependsOn(__task__)`.
    
    `build` — _lifecycle task_::
    _Depends on_: `check`, `assemble`
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ConfigurationMetadataFactory.java

     */
    public interface ConfigurationMetadataFactory {
    
        /**
         * Visit all configurations in this component that can be selected in a dependency graph.
         *
         * <p>This includes all consumable configurations with and without attributes. Configurations visited
         * by this method may not be suitable for selection via attribute matching.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ComponentSelector.java

     * expose specific details about the criteria.
     *
     * @since 1.10
     */
    @UsedByScanPlugin
    public interface ComponentSelector {
        /**
         * Returns a human-consumable display name for this selector.
         *
         * @return Display name
         * @since 1.10
         */
        String getDisplayName();
    
        /**
         * Checks if selector matches component identifier.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestHistory.java

            return convertToId(getDisplayName());
        }
    
        static String convertToId(String displayName) {
            return displayName.replaceAll("[^a-zA-Z0-9]", "-");
        }
    
        /**
         * A human consumable display name for this performance test.
         */
        default String getDisplayName() {
            return getExperiment().getDisplayName();
        }
    
        PerformanceExperiment getExperiment();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalOperationDescriptor.java

         * a human each child operation of a given operation.
         */
        String getName();
    
        /**
         * Returns a human consumable display name for the operation. This display name should generally provide enough context
         * to uniquely identify the operation to a human.
         *
         * @return The display name of the operation
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top