Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 401 for human (0.04 sec)

  1. 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)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         *
         * @param name the name of the problem. As a convention kebab-case-formatting should be used.
         * @param displayName a human-readable representation of the problem, free of any contextual information.
         * @return this
         * @since 8.8
         */
        ProblemSpec id(String name, String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2.kt

          }
        }
    
        for (i in FLAGS.indices) { // Fill in holes with binary representation.
          if (FLAGS[i] == null) FLAGS[i] = BINARY[i]
        }
      }
    
      /**
       * Returns a human-readable representation of HTTP/2 frame headers.
       *
       * The format is:
       *
       * ```
       * direction streamID length type flags
       * ```
       *
       * Where direction is `<<` for inbound and `>>` for outbound.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/developingPlugins/publishingPlugins/groovy/build.gradle

        // ... // <2>
    
        plugins { // <3>
            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.set(['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)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemGroup.java

    @Incubating
    public interface ProblemGroup {
    
        /**
         * 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 parent group or {@code null} for root groups.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 10:17:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ComponentSelector.java

    /**
     * Represents a component selector. Used for displaying unresolved dependency warnings in the IDE.
     *
     * @since 6.7
     */
    public interface ComponentSelector {
    
        /**
         * Returns a human-readable display name for this selector.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 925 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/version/types.go

    	BuildDate    string `json:"buildDate"`
    	GoVersion    string `json:"goVersion"`
    	Compiler     string `json:"compiler"`
    	Platform     string `json:"platform"`
    }
    
    // String returns info as a human-friendly version string.
    func (info Info) String() string {
    	return info.GitVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 17 11:34:05 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemGroup.java

     */
    @Incubating
    @Immutable
    public interface ProblemGroup {
    
        /**
         * The name of the problem group.
         *
         * @since 8.8
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
         * @since 8.8
         */
        String getDisplayName();
    
        /**
         * Returns the parent group or {@code null} for root groups.
         *
         * @since 8.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top