Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 401 for human (0.06 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationDescriptor.java

        /**
         * Returns a short name for the operation. This is a short human consumable description of the operation that makes sense in the context of the parent operation.
         * See TAPI {@code OperationDescriptor}.
         */
        public String getName() {
            return name;
        }
    
        /**
         * Returns the display name for the operation. This should be a standalone human consumable description of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ComponentSelector.java

     * expose specific details about the criteria.
     *
     * @since 1.10
     */
    @UsedByScanPlugin
    public interface ComponentSelector {
        /**
         * Returns a human-consumable display name for this selector.
         *
         * @return Display name
         * @since 1.10
         */
        String getDisplayName();
    
        /**
         * Checks if selector matches component identifier.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/OperatingSystem.java

     *         <td>"solaris", "sunos"</td>
     *     </tr>
     * </table>
     */
    public interface OperatingSystem extends Named {
        @Input
        @Override
        String getName();
    
        /**
         * Returns a human-consumable display name for this operating system.
         */
        @Internal
        String getDisplayName();
    
        /**
         * Is this the current OS?
         */
        @Internal
        boolean isCurrent();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/configuration/internal/ExecuteListenerBuildOperationType.java

             * @see org.gradle.configuration.ApplyScriptPluginBuildOperationType.Details#getApplicationId()
             */
            long getApplicationId();
    
            /**
             * A human friendly description of where the listener was registered by the user.
             *
             * General contract is public-type-simplename.method-name.
             * e.g. Project.beforeEvaluate
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/ProgressEvent.java

        /**
         * Returns the time this event was triggered.
         *
         * @return The event time, in milliseconds since the epoch.
         */
        long getEventTime();
    
        /**
         * Returns a human consumable short description of the event.
         *
         * @return The short description of the event.
         */
        String getDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compilation_cluster_signature.h

      bool operator==(const DeviceCompilationClusterSignature& other) const;
    
      struct Hash {
        uint64 operator()(const DeviceCompilationClusterSignature& signature) const;
      };
    
      // Returns a human-readable description of the signature.
      string HumanString() const;
    
      // Builds the signature for a compilation.
      static absl::StatusOr<DeviceCompilationClusterSignature> Build(
          const NameAttrList& function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. testing/soak/src/integTest/groovy/org/gradle/connectivity/MavenGoogleDependencyResolveIntegrationTest.groovy

                        content {
                            includeGroup 'org.sample'
                        }
                    }
                }
            """
        }
    
        def "can query for human-readable repository name"() {
            given:
            buildFile << """
                task checkRepoName {
                    doLast {
                        assert repositories*.name == ['Google', 'otherGoogle']
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/events/v1beta1/types_swagger_doc_generated.go

    	"reason":                   "reason is why the action was taken. It is human-readable. This field can have at most 128 characters.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/events/v1beta1/generated.proto

      // This field can have at most 128 characters.
      // +optional
      optional string action = 6;
    
      // reason is why the action was taken. It is human-readable.
      // This field can have at most 128 characters.
      // +optional
      optional string reason = 7;
    
      // regarding contains the object this Event is about. In most cases it's an Object reporting controller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/events/v1/types_swagger_doc_generated.go

    	"reason":                   "reason is why the action was taken. It is human-readable. This field cannot be empty for new Events and it can have at most 128 characters.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top