Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for consumable (0.16 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ScenarioDefinition.java

     * limitations under the License.
     */
    
    package org.gradle.performance.results;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    public interface ScenarioDefinition {
        /**
         * A human consumable display name for this definition.
         */
        String getDisplayName();
    
        /**
         * The test project name.
         */
        String getTestProject();
    
        /**
         * The tasks executed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationDescriptor.java

         * Returns a short name for the operation. This is a short human consumable description of the operation that makes sense in the context of the parent operation.
         * See TAPI {@code OperationDescriptor}.
         */
        public String getName() {
            return name;
        }
    
        /**
         * Returns the display name for the operation. This should be a standalone human consumable description of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.ConfigurationContainer.xml

                </tr>
                <tr>
                    <td>getAt</td>
                </tr>
                <tr>
                    <td>detachedConfiguration</td>
                </tr>
                <tr>
                    <td>consumable</td>
                </tr>
                <tr>
                    <td>resolvable</td>
                </tr>
                <tr>
                    <td>dependencyScope</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 882 bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

        // This is needed because of the duplicate package-info.class files
        duplicatesStrategy = DuplicatesStrategy.WARN
    }
    
    // The consumable configuration containing the public Gradle API artifact
    // and its external dependencies.
    val gradleApiElements = configurations.consumable("gradleApiElements") {
        extendsFrom(externalApi.get())
        outgoing.artifact(task)
        configureAsRuntimeElements(objects)
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top