Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 525 for Primitive (0.21 sec)

  1. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashFunction.java

     */
    public interface HashFunction {
        /**
         * Returns the algorithm used for this hashing function.
         */
        String getAlgorithm();
    
        /**
         * Returns a primitive hasher using the hash function.
         */
        PrimitiveHasher newPrimitiveHasher();
    
        /**
         * Returns a prefixing hasher using the hash function.
         */
        Hasher newHasher();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/PrimitiveTypes.java

            Object defaultValue = TYPES_DEFAULT_VALUES.get(primitiveModelType);
            if (defaultValue == null) {
                throw new IllegalArgumentException(primitiveModelType + " is not a primitive type.");
            }
            return defaultValue;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Defaults.java

      /**
       * Returns the default value of {@code type} as defined by JLS --- {@code 0} for numbers, {@code
       * false} for {@code boolean} and {@code '\0'} for {@code char}. For non-primitive types and
       * {@code void}, {@code null} is returned.
       */
      @SuppressWarnings("unchecked")
      @CheckForNull
      public static <T> T defaultValue(Class<T> type) {
        checkNotNull(type);
        if (type.isPrimitive()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Shorts.java

    import javax.annotation.CheckForNull;
    
    /**
     * Static utility methods pertaining to {@code short} primitives, that are not already found in
     * either {@link Short} or {@link Arrays}.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Shorts.java

    import javax.annotation.CheckForNull;
    
    /**
     * Static utility methods pertaining to {@code short} primitives, that are not already found in
     * either {@link Short} or {@link Arrays}.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Defaults.java

      /**
       * Returns the default value of {@code type} as defined by JLS --- {@code 0} for numbers, {@code
       * false} for {@code boolean} and {@code '\0'} for {@code char}. For non-primitive types and
       * {@code void}, {@code null} is returned.
       */
      @SuppressWarnings("unchecked")
      @CheckForNull
      public static <T> T defaultValue(Class<T> type) {
        checkNotNull(type);
        if (type.isPrimitive()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributesToMapConverter.java

            }
    
            if (attributeValue instanceof Named) {
                return ((Named) attributeValue).getName();
            } else if (attributeValue instanceof Object[]) {
                // don't bother trying to handle primitive arrays specially
                return Arrays.toString((Object[]) attributeValue);
            } else {
                return attributeValue.toString();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerHeader.kt

       * their own headers.
       *
       * This value is encoded in bit 6 of the first byte of each value.
       *
       * ```
       * 0bxx0xxxxx Primitive
       * 0bxx1xxxxx Constructed
       * ```
       */
      var constructed: Boolean,
      /** Length of the message in bytes, or -1L if its length is unknown at the time of encoding. */
      var length: Long,
    ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

      let summary = "Decompose composite resource variable operations into primitive Read/AssignVariableOp and raw computation.";
    
      let description = [{
        A pass that decomposes composite resource operations into primitive ones like
        ReadVariableOp, AssignVariableOp and other computations to facilitate
        transformations like resource op lifting.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/JavaReflectionUtil.java

                return Float.class;
            } else if (type == Double.TYPE) {
                return Double.class;
            }
            throw new IllegalArgumentException(String.format("Don't know the wrapper type for primitive type %s.", type));
        }
    
        /**
         * This is intended to be a equivalent of deprecated {@link Class#newInstance()}.
         */
        public static <T> T newInstance(Class<T> c) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top