- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for 32L (1.09 sec)
-
src/main/java/jcifs/smb1/util/Encdec.java
*/ public static int enc_uint64be(final long l, final byte[] dst, final int di) { enc_uint32be((int) (l & 0xFFFFFFFFL), dst, di + 4); enc_uint32be((int) (l >> 32L & 0xFFFFFFFFL), dst, di); return 8; } /** * Encodes a 64-bit unsigned integer in little-endian byte order. * * @param l the long value to encode
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
assertEquals(24L, MemoryUtil.sizeOf(Double.MAX_VALUE)); assertEquals(24L, MemoryUtil.sizeOf(Byte.MAX_VALUE)); assertEquals(16L, MemoryUtil.sizeOf(Boolean.TRUE)); assertEquals(32L, MemoryUtil.sizeOf(new Date())); assertEquals(80L, MemoryUtil.sizeOf(LocalDateTime.now())); assertEquals(2128L, MemoryUtil.sizeOf(ZonedDateTime.now())); assertEquals(66L, MemoryUtil.sizeOf("1234567890"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.8K bytes - Viewed (0) -
src/main/java/jcifs/util/Encdec.java
*/ public static int enc_uint64be(final long l, final byte[] dst, final int di) { enc_uint32be((int) (l & 0xFFFFFFFFL), dst, di + 4); enc_uint32be((int) (l >> 32L & 0xFFFFFFFFL), dst, di); return 8; } /** * Encodes a 64-bit unsigned integer in little-endian byte order. * * @param l the long value to encode
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashingTest.java
assertThrows( IllegalArgumentException.class, () -> { HashCode unused = Hashing.combineOrdered( ImmutableList.of(HashCode.fromInt(32), HashCode.fromLong(32L))); }); } public void testCombineOrdered() { HashCode hash31 = HashCode.fromInt(31); HashCode hash32 = HashCode.fromInt(32);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 26.4K bytes - Viewed (2) -
src/main/java/jcifs/internal/util/SMBUtil.java
*/ public static long readTime(final byte[] src, final int srcIndex) { final int low = readInt4(src, srcIndex); final int hi = readInt4(src, srcIndex + 4); long t = (long) hi << 32L | low & 0xFFFFFFFFL; return t / 10000L - SmbConstants.MILLISECONDS_BETWEEN_1970_AND_1601; } /** * Writes a Java time value as a Windows FILETIME
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/MemoryUtil.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
response.readParameterWordsWireFormat(buffer1, 0); assertEquals(16L, response.getOffset(), "First read should set offset to 16"); response.readParameterWordsWireFormat(buffer2, 0); assertEquals(32L, response.getOffset(), "Second read should update offset to 32"); } @Test @DisplayName("getOffset returns same value on multiple calls") void testGetOffsetConsistency() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashingTest.java
assertThrows( IllegalArgumentException.class, () -> { HashCode unused = Hashing.combineOrdered( ImmutableList.of(HashCode.fromInt(32), HashCode.fromLong(32L))); }); } public void testCombineOrdered() { HashCode hash31 = HashCode.fromInt(31); HashCode hash32 = HashCode.fromInt(32);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 26.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/GcFinalization.java
// // TODO(user): Consider scaling by number of mutator threads, // e.g. using Thread#activeCount() return max(10L, Runtime.getRuntime().totalMemory() / (32L * 1024L * 1024L)); } /** * Waits until the given future {@linkplain Future#isDone is done}, invoking the garbage collector * as necessary to try to ensure that this will happen. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache2/Relay.kt
private const val SOURCE_FILE = 2 @JvmField val PREFIX_CLEAN = "OkHttp cache v1\n".encodeUtf8() @JvmField val PREFIX_DIRTY = "OkHttp DIRTY :(\n".encodeUtf8() private const val FILE_HEADER_SIZE = 32L /** * Creates a new relay that reads a live stream from [upstream], using [file] to share that data * with other sources. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 17:15:47 UTC 2025 - 11.8K bytes - Viewed (0)