Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 363 for human (0.06 sec)

  1. 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)
  2. 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)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/PluginDeclaration.java

         * that support human-readable artifact names.
         *
         * @since 4.10
         */
        public String getDisplayName() {
            return displayName;
        }
    
        /**
         * Sets the display name for this plugin declaration.
         *
         * <p>The display name is used when publishing this plugin to repositories
         * that support human-readable artifact names.
         *
         * @since 4.10
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h

    // Parses the sharding string. This sharding string can be binary (serialized)
    // or human readable.
    mlir::LogicalResult DecodeShardingAttribute(const std::string& shard_str,
                                                xla::OpSharding& sharding,
                                                bool report_error = true);
    
    // Encodes the sharding in human readable form.
    mlir::LogicalResult DecodeShardingAttribute(mlir::Attribute shard_attr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:18:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/NumberUtilTest.groovy

            100L * 1000**5      | "88.8 PiB"
        }
    
        def "converts to 1024 based human readable format (#bytes -> #humanReadableString)"() {
            expect:
            formatBytes(bytes) == humanReadableString
    
            where:
            bytes | humanReadableString
            0     | '0 B'
            null  | 'unknown size'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Binary.java

    import org.gradle.api.Incubating;
    
    /**
     * A physical binary artifact, which can run on a particular platform or runtime.
     */
    @Incubating
    public interface Binary {
        /**
         * Returns a human-consumable display name for this binary.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 926 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/package-info.java

     */
    
    /**
     * This package contains {@link org.gradle.internal.component.resolution.failure.describer.ResolutionFailureDescriber ResolutionFailureDescriber}s
     * used for describing resolution failures in human-readable terms for use in displaying error messages on the console.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 15:07:22 UTC 2024
    - 987 bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/Flavor.java

    import org.gradle.api.Named;
    
    /**
     * Defines a custom variant that differentiate a {@link NativeBinary}.
     */
    @Incubating
    public interface Flavor extends Named {
        /**
         * Returns a human-consumable display name for this flavor.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 959 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/PluginIdentifier.java

    /**
     * Identifies a Gradle plugin.
     *
     * @since 5.1
     * @see BinaryPluginIdentifier
     * @see ScriptPluginIdentifier
     */
    public interface PluginIdentifier {
    
        /**
         * Returns a human-readable display name for this plugin.
         */
        String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 918 bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ToolChain.java

    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A set of compilers that are used together to construct binaries.
     */
    @HasInternalProtocol
    public interface ToolChain extends Named {
        /**
         * Returns a human consumable name for this tool chain.
         *
         * @since 1.11
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1003 bytes
    - Viewed (0)
Back to top