Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 428 for Primitive (1.26 sec)

  1. android/guava/src/com/google/common/primitives/Bytes.java

       *
       * @param value a primitive {@code byte} value
       * @return a hash code for the value
       */
      public static int hashCode(byte value) {
        return value;
      }
    
      /**
       * Returns {@code true} if {@code target} is present as an element anywhere in {@code array}.
       *
       * @param array an array of {@code byte} values, possibly empty
       * @param target a primitive {@code byte} value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Bytes.java

       *
       * @param value a primitive {@code byte} value
       * @return a hash code for the value
       */
      public static int hashCode(byte value) {
        return value;
      }
    
      /**
       * Returns {@code true} if {@code target} is present as an element anywhere in {@code array}.
       *
       * @param array an array of {@code byte} values, possibly empty
       * @param target a primitive {@code byte} value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/Chars.java

     * Static utility methods pertaining to {@code char} primitives, that are not already found in
     * either {@link Character} or {@link Arrays}.
     *
     * <p>All the operations in this class treat {@code char} values strictly numerically; they are
     * neither Unicode-aware nor locale-dependent.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/ir/QuantizeUtils.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h"
    
    using namespace mlir;
    using namespace mlir::quantfork;
    
    /// Converts a possible primitive, real expressed value attribute to a
    /// corresponding storage attribute (typically FloatAttr -> IntegerAttr).
    /// quantizedElementType is the QuantizedType that describes the expressed
    /// origValue.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Booleans.java

    import javax.annotation.CheckForNull;
    
    /**
     * Static utility methods pertaining to {@code boolean} primitives, that are not already found in
     * either {@link Boolean} 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
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Booleans.java

    import javax.annotation.CheckForNull;
    
    /**
     * Static utility methods pertaining to {@code boolean} primitives, that are not already found in
     * either {@link Boolean} 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
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/DirectInstantiator.java

                    Class<?> argumentType = argumentTypes[i];
                    Class<?> parameterType = parameterTypes[i];
                    boolean primitive = parameterType.isPrimitive();
                    if (primitive) {
                        if (argumentType == null) {
                            return false;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/KotlinTypeStringTest.kt

                kotlinTypeStringFor(typeOf<java.util.function.Function<String, String>>()),
                equalTo("java.util.function.Function<String, String>")
            )
        }
    
        @Test
        fun `#kotlinTypeStringFor primitive type`() {
            assertPrimitiveTypeName<Boolean>(java.lang.Boolean.TYPE)
            assertPrimitiveTypeName<Char>(java.lang.Character.TYPE)
            assertPrimitiveTypeName<Byte>(java.lang.Byte.TYPE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Chars.java

     * Static utility methods pertaining to {@code char} primitives, that are not already found in
     * either {@link Character} or {@link Arrays}.
     *
     * <p>All the operations in this class treat {@code char} values strictly numerically; they are
     * neither Unicode-aware nor locale-dependent.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtJvmTypeMapper.kt

            withValidityAssertion { analysisSession.jvmTypeMapper.mapTypeToJvmType(this, mode) }
    
        /**
         * Returns true if the type is backed by a single JVM primitive type
         */
        public val KaType.isPrimitiveBacked: Boolean
            get() = withValidityAssertion { analysisSession.jvmTypeMapper.isPrimitiveBacked(this) }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top