Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 401 for human (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/UsageDescriber.java

        private UsageDescriber() { /* not instantiable */ }
    
        /**
         * Builds a human-readable description of the usage allowed by the given role.
         *
         * @param role the role to describe
         * @return a human-readable description of the role's allowed usage
         */
        public static String describeRole(ConfigurationRole role) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 16:04:58 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalOperationDescriptor.java

         * a human each child operation of a given operation.
         */
        String getName();
    
        /**
         * Returns a human consumable display name for the operation. This display name should generally provide enough context
         * to uniquely identify the operation to a human.
         *
         * @return The display name of the operation
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationDescriptor.java

         * by a human to disambiguate between the children of a given operation.
         *
         * @return The name of the operation.
         */
        String getName();
    
        /**
         * Returns a human consumable display name for the operation. This display name provides enough context for a human to uniquely identify the operation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/VersionRef.java

     * control system.
     *
     * @since 4.4
     */
    public interface VersionRef {
        /**
         * Returns a human-readable version of the software component.
         */
        String getVersion();
    
        /**
         * Returns a canonical representation of this version of the software
         * component, which may be different from the human-readable version.
         */
        String getCanonicalId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.h

      const ::stablehlo::quantization::QuantizationResults& GetQuantizationResults()
          const {
        return quantization_results_;
      }
    
      // Returns a human-readable string representation of this report.
      std::string ToString() const;
    
      // Prints a human-readable report to stdout.
      void Print() const;
    
      // Saves the report to `file_path`. The textproto representation of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelElement.java

         * Some element have their name generated or automatically assigned, and for these elements the name may not be human consumable.
         */
        @Override
        String getName();
    
        /**
         * Returns a human-consumable display name for this element.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/resources/Resource.java

     * There are more specific interface that extend this one and specify ways of accessing the resource's content.
     */
    public interface Resource {
    
        /**
         * Human readable name of this resource
         *
         * @return human readable name, should not be null
         */
        String getDisplayName();
    
        /**
         * Uniform resource identifier that uniquely describes this resource
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/DependencySpec.java

    import org.gradle.api.Incubating;
    
    /**
     * A dependency onto a Gradle component.
     */
    @Incubating
    public interface DependencySpec {
    
        /**
         * The human friendly name of this dependency.
         *
         * @return human friendly name
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 923 bytes
    - Viewed (0)
  9. pkg/kubelet/util/format/pod.go

    )
    
    // Pod returns a string representing a pod in a consistent human readable format,
    // with pod UID as part of the string.
    func Pod(pod *v1.Pod) string {
    	if pod == nil {
    		return "<nil>"
    	}
    	return PodDesc(pod.Name, pod.Namespace, pod.UID)
    }
    
    // PodDesc returns a string representing a pod in a consistent human readable format,
    // with pod UID as part of the string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/ComponentSpecIdentifier.java

         * The base name of this component.
         */
        String getName();
    
        /**
         * A path that uniquely identifies this component within its project.
         *
         * Implementation should attempt to produce human consumable identifiers.
         */
        Path getPath();
    
        /**
         * Returns a child of this component, with the given name.
         */
        ComponentSpecIdentifier child(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top