Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 363 for human (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProcessMetaDataProvider.java

         */
        String getProcessIdentifier();
    
        /**
         * Returns a display name for this process. Should allow a human to figure out which process the display name refers to.
         */
        String getProcessDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. 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)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestHistory.java

            return convertToId(getDisplayName());
        }
    
        static String convertToId(String displayName) {
            return displayName.replaceAll("[^a-zA-Z0-9]", "-");
        }
    
        /**
         * A human consumable display name for this performance test.
         */
        default String getDisplayName() {
            return getExperiment().getDisplayName();
        }
    
        PerformanceExperiment getExperiment();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. fastapi/param_functions.py

            ),
        ] = None,
        title: Annotated[
            Optional[str],
            Doc(
                """
                Human-readable title.
                """
            ),
        ] = None,
        description: Annotated[
            Optional[str],
            Doc(
                """
                Human-readable description.
                """
            ),
        ] = None,
        gt: Annotated[
            Optional[float],
            Doc(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentVariantNodeIdentifier.java

    /**
     * A node identifier that uniquely identifies a variant within a component by the variant's name.
     *
     * Note: Generally, variants should be identified by their attributes and capabilities, as the name
     * is more of a human-readable identifier.
     */
    public class ComponentVariantNodeIdentifier implements NodeIdentifier {
        private final ComponentIdentifier componentId;
        private final String variantName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Describable.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api;
    
    /**
     * Types can implement this interface when they provide a human-readable display name.
     * It is strongly encouraged to compute this display name lazily: computing a display name,
     * even if it's only a string concatenation, can take a significant amount of time during
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top