Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 363 for human (0.38 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. 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)
Back to top