Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/io/fs/format.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs
    
    import (
    	"time"
    )
    
    // FormatFileInfo returns a formatted version of info for human readability.
    // Implementations of [FileInfo] can call this from a String method.
    // The output for a file named "hello.go", 100 bytes, mode 0o644, created
    // January 1, 1970 at noon is
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRole.java

    public interface ConfigurationRole {
        /**
         * Returns a human-readable name for this role.
         */
        String getName();
    
        boolean isConsumable();
        boolean isResolvable();
        boolean isDeclarable();
        boolean isConsumptionDeprecated();
        boolean isResolutionDeprecated();
        boolean isDeclarationAgainstDeprecated();
    
        /**
         * Obtains a human-readable summary of the usage allowed by the given role.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:39:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/internal/trace/resources.go

    )
    
    // Executing returns true if the state indicates that the goroutine is executing
    // and bound to its thread.
    func (s GoState) Executing() bool {
    	return s == GoRunning || s == GoSyscall
    }
    
    // String returns a human-readable representation of a GoState.
    //
    // The format of the returned string is for debugging purposes and is subject to change.
    func (s GoState) String() string {
    	switch s {
    	case GoUndetermined:
    		return "Undetermined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top