Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 525 for Primitive (0.29 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

            for (Class<?> parameterType : parameterTypes) {
                // If the argument type is primitive then we want
                // to convert our primitive type signature to the
                // corresponding Object type so introspection for
                // methods with primitive types will work correctly.
                if (parameterType.isPrimitive()) {
                    if (parameterType.equals(Boolean.TYPE)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixtureTest.java

    import static org.assertj.core.api.Assertions.assertThat;
    import static org.gradle.architecture.test.ArchUnitFixture.haveOnlyArgumentsOrReturnTypesThatAre;
    import static org.gradle.architecture.test.ArchUnitFixture.primitive;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    public class ArchUnitFixtureTest {
        @Test
        public void reports_valid_methods() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

            }
    
        /**
         * Returns whether the given [KaType] is an array or a primitive array type or not.
         */
        public fun KaType.isArrayOrPrimitiveArray(): Boolean =
            withValidityAssertion { analysisSession.typeInfoProvider.isArrayOrPrimitiveArray(this) }
    
        /**
         * Returns whether the given [KaType] is an array or a primitive array type and its element is also an array type or not.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

     * variables.
     *
     * <p><a id="bitEquals"></a>This class compares primitive {@code double} values in methods such as
     * {@link #compareAndSet} by comparing their bitwise representation using {@link
     * Double#doubleToRawLongBits}, which differs from both the primitive double {@code ==} operator and
     * from {@link Double#equals}, as if implemented by:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/AbstractStreamingHasher.java

        checkArgument(bufferSize % chunkSize == 0);
    
        // TODO(user): benchmark performance difference with longer buffer
        // always space for a single primitive
        this.buffer = ByteBuffer.allocate(bufferSize + 7).order(ByteOrder.LITTLE_ENDIAN);
        this.bufferSize = bufferSize;
        this.chunkSize = chunkSize;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/AbstractStreamingHasher.java

        checkArgument(bufferSize % chunkSize == 0);
    
        // TODO(user): benchmark performance difference with longer buffer
        // always space for a single primitive
        this.buffer = ByteBuffer.allocate(bufferSize + 7).order(ByteOrder.LITTLE_ENDIAN);
        this.bufferSize = bufferSize;
        this.chunkSize = chunkSize;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Ints.java

    import java.util.Spliterators;
    import javax.annotation.CheckForNull;
    
    /**
     * Static utility methods pertaining to {@code int} primitives, that are not already found in either
     * {@link Integer} 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
    - 29.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                    //   code, but it is better to be consistent with the CodeSizeEvaluator.
                    // * _UNBOX takes 3 bytes if the target type is a reference and 6 if it is a primitive.
                    // * ARETURN is 1 byte
                    // * ACONST_NULL is one byte
                    // Labels aren't represented in the code.
    
                    _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Longs.java

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

    import java.util.Spliterators;
    import javax.annotation.CheckForNull;
    
    /**
     * Static utility methods pertaining to {@code long} primitives, that are not already found in
     * either {@link Long} 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
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top