Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 401 for human (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/package-info.java

     */
    
    /**
     * This package contains {@link org.gradle.internal.component.resolution.failure.describer.ResolutionFailureDescriber ResolutionFailureDescriber}s
     * used for describing resolution failures in human-readable terms for use in displaying error messages on the console.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 15:07:22 UTC 2024
    - 987 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/events/PluginIdentifier.java

    /**
     * Identifies a Gradle plugin.
     *
     * @since 5.1
     * @see BinaryPluginIdentifier
     * @see ScriptPluginIdentifier
     */
    public interface PluginIdentifier {
    
        /**
         * Returns a human-readable display name for this plugin.
         */
        String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 918 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ComponentIdentifier.java

     *
     * @since 1.10
     */
    @UsedByScanPlugin
    public interface ComponentIdentifier {
        /**
         * Returns a human-consumable display name for this identifier.
         *
         * @return Component identifier display name
         * @since 1.10
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 09 14:40:00 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ToolChain.java

    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * 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)
  6. 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 >= 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)
  7. 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)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemId.java

    @Incubating
    public interface ProblemId {
    
        /**
         * The name of the problem group.
         *
         * @return the label
         * @since 8.9
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
         * @return the display name
         * @since 8.9
         */
        String getDisplayName();
    
        /**
         * Returns the container  group.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 10:17:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/publishingPlugins/kotlin/build.gradle.kts

        plugins { // <3>
            create("greetingsPlugin") { // <4>
                id = "<your plugin identifier>" // <5>
                displayName = "<short displayable name for plugin>" // <6>
                description = "<human-readable description of what your plugin is about>" // <7>
                tags = listOf("tags", "for", "your", "plugins") // <8>
                implementationClass = "<your plugin class>"
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemId.java

     *
     * @since 8.8
     */
    @Incubating
    public interface ProblemId {
    
        /**
         * The name of the problem.
         *
         * @since 8.8
         */
        String getName();
    
        /**
         * A human-readable label describing the problem ID.
         *
         * @since 8.8
         */
        String getDisplayName();
    
        /**
         * The parent group.
         *
         * @since 8.8
         */
        ProblemGroup getGroup();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:38:33 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top