Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for consumable (0.15 sec)

  1. 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)
  2. 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)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalProgressEvent.java

        /**
         * Returns the time when the event happened.
         *
         * @return The event time
         */
        long getEventTime();
    
        /**
         * Returns a human consumable display name for this event.
         */
        String getDisplayName();
    
        /**
         * Returns the description of the operation for which progress is reported.
         *
         * @return The build description
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ToolChain.java

    /**
     * A set of compilers that are used together to construct binaries.
     */
    @HasInternalProtocol
    public interface ToolChain extends Named {
        /**
         * Returns a human consumable name for this tool chain.
         *
         * @since 1.11
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1003 bytes
    - Viewed (0)
  5. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/Timer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.time;
    
    public interface Timer {
    
        /**
         * @return A human-consumable description of the elapsed time.
         */
        String getElapsed();
    
        /**
         * Return the elapsed time in ms. Returned value is always &gt;= 0.
         * @return The elapsed time, in ms.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/BuildType.java

    /**
     * Specifies a build-type for a native binary. Common build types are 'debug' and 'release', but others may be defined.
     */
    @Incubating
    public interface BuildType extends Named {
        /**
         * Returns a human-consumable name for this build type.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1006 bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Platform.java

     */
    public interface Platform extends Named {
        @Override
        @Input
        String getName();
    
        /**
         * Returns a human consumable name for this platform.
         *
         */
        @Internal
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/sourceSets-badConfNames/tests/badConfNames.out

    When creating configurations during sourceSet myCode setup, Gradle found that configuration myCodeCompileClasspath already exists with permitted usage(s):
    	Consumable - this configuration can be selected by another project as a dependency
    	Resolvable - this configuration can be resolved by this project to a set of files
    	Declarable - this configuration can have dependencies added to it
    Yet Gradle expected to create it with the usage(s):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Binary.java

    import org.gradle.api.Incubating;
    
    /**
     * A physical binary artifact, which can run on a particular platform or runtime.
     */
    @Incubating
    public interface Binary {
        /**
         * Returns a human-consumable display name for this binary.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 926 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Launchable.java

         * Returns the identifier for the Gradle project that this model originated from.
         *
         * @since 2.13
         */
        @Override
        ProjectIdentifier getProjectIdentifier();
    
        /**
         * Returns a human-consumable display name for this launchable.
         *
         * @return Display name of this launchable.
         * @since 1.12
         */
        String getDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top