Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for consumable (0.15 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmPluginServices.java

        /**
         * Configures a consumable configuration to provide an API compile classpath.
         *
         * @param configuration the configuration to be configured
         */
        void configureAsApiElements(HasConfigurableAttributes<?> configuration);
    
        /**
         * Configures a consumable configuration to provide a runtime classpath.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

     * configurations, compile task, and jar task. This feature creates a jar task and javadoc task, and
     * can optionally also create consumable javadoc and sources jar variants.
     *
     * <p>This can be used to create production libraries, applications, test suites, test fixtures,
     * or any other consumable JVM feature.</p>
     *
     * <p>This feature can conditionally be configured to instead "extend" the production code. In that case, this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/CommandLineToolInvocationWorker.java

    import org.gradle.internal.operations.BuildOperationWorker;
    
    public interface CommandLineToolInvocationWorker extends BuildOperationWorker<CommandLineToolInvocation> {
        /**
         * Returns a human consumable name for this tool.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 941 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/ConfigurationNotConsumableFailure.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.type;
    
    /**
     * A {@link ResolutionFailure} that represents the situation when the selected configuration
     * is not consumable.
     *
     * This is exclusive to project dependencies when a configuration is requested by name.
     */
    public final class ConfigurationNotConsumableFailure extends AbstractConfigurationSelectionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationDescriptor.java

         * by a human to disambiguate between the children of a given operation.
         *
         * @return The name of the operation.
         */
        String getName();
    
        /**
         * Returns a human consumable display name for the operation. This display name provides enough context for a human to uniquely identify the operation.
         *
         * @return The display name of the operation.
         */
        String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/Architecture.java

     *     </tr>
     * </table>
     */
    @HasInternalProtocol
    public interface Architecture extends Named {
        @Override
        @Input
        String getName();
    
        /**
         * Returns a human-consumable display name for this architecture.
         */
        @Internal
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ComponentArtifactIdentifier.java

    public interface ComponentArtifactIdentifier {
        /**
         * Returns the id of the component that this artifact belongs to.
         */
        ComponentIdentifier getComponentIdentifier();
    
        /**
         * Returns some human-consumable display name for this artifact.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesLocalComponentIntegrationTest.groovy

        }
    
        def "can lazily define and request capability"() {
            buildFile << """
    
                def value = "org:initial:1.0"
    
                configurations {
                    consumable("conf") {
                        outgoing {
                            capability(project.provider(() -> value))
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 03:06:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/IncompatibleGraphVariantsFailureDescriber.java

        private static final String NO_MATCHING_VARIANTS_SECTION = "sub:variant-no-match";
        private static final String NO_VARIANTS_EXIST_PREFIX = "Creating consumable variants is explained in more detail at ";
        private static final String NO_VARIANTS_EXIST_SECTION = "sec:resolvable-consumable-configs";
    
        @Override
        public VariantSelectionException describeFailure(IncompatibleGraphVariantFailure failure, Optional<AttributesSchemaInternal> schema) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:02:51 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/Flavor.java

    import org.gradle.api.Named;
    
    /**
     * Defines a custom variant that differentiate a {@link NativeBinary}.
     */
    @Incubating
    public interface Flavor extends Named {
        /**
         * Returns a human-consumable display name for this flavor.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 959 bytes
    - Viewed (0)
Back to top