Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 401 for human (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/file/RelativeFilePathResolver.java

        /**
         * Converts the given path to a relative path.
         */
        String resolveAsRelativePath(Object path);
    
        /**
         * Converts the given path to a path that is useful to display to a human, for example in logging or error reports.
         * Generally attempts to use a relative path, but may switch to an absolute path for files outside and some distance from the base directory.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/ResolutionFailure.java

     *
     * @implSpec Extending types should be immutable data classes with no nullable fields, they
     * must also be serializable by the configuration cache.
     */
    public interface ResolutionFailure {
        /**
         * Returns a human-readable name of the requested component or configuration, for use
         * primarily in error messages.
         *
         * @return the name of the requested component or configuration
         */
        String getRequestedName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K 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. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/internal/IsProbablyUtf8.kt

     * limitations under the License.
     */
    package okhttp3.logging.internal
    
    import java.io.EOFException
    import okio.Buffer
    
    /**
     * Returns true if the body in question probably contains human readable text. Uses a small
     * sample of code points to detect unicode control characters commonly used in binary file
     * signatures.
     */
    fun Buffer.isProbablyUtf8(): Boolean {
      try {
        val prefix = Buffer()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top