- Sort Score
- Result 10 results
- Languages All
Results 51 - 57 of 57 for 0xffffff (0.35 sec)
-
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
return readInt4(buffer, bufferIndex) * 1000L; } static void writeUTime(long t, final byte[] dst, final int dstIndex) { if (t == 0L || t == 0xFFFFFFFFFFFFFFFFL) { writeInt4(0xFFFFFFFF, dst, dstIndex); return; } synchronized (TZ) { if (TZ.inDaylightTime(new Date())) { // in DST if (TZ.inDaylightTime(new Date(t))) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
@Override <E extends Comparable<E>> ImmutableSortedSet.Builder<E> builder() { return ImmutableSortedSet.naturalOrder(); } @Override int getComplexBuilderSetLastElement() { return 0x00FFFFFF; } public void testLegacyComparable_of() { ImmutableSortedSet<LegacyComparable> set0 = ImmutableSortedSet.of(); assertThat(set0).isEmpty();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 46.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
assertEquals(maxSessionId, testMessage.getSessionId()); } @Test @DisplayName("Should handle all flags set") void testAllFlagsSet() { int allFlags = 0xFFFFFFFF; testMessage.addFlags(allFlags); assertEquals(allFlags, testMessage.getFlags()); // Should still be able to clear specific flags
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
final int size = Encdec.dec_uint16be(BUF, 2) & 0xFFFF; if (size < HEADER_LENGTH + 1 || 4 + size > rcv_buf_size) { throw new IOException("Invalid payload size: " + size); } final int errorCode = Encdec.dec_uint32le(BUF, 9) & 0xFFFFFFFF;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
cmd/format-erasure.go
// Distributed algorithm used, with EC:4 default parity formatErasureVersionV3DistributionAlgoV3 = "SIPMOD+PARITY" ) // Offline disk UUID represents an offline disk. const offlineDiskUUID = "ffffffff-ffff-ffff-ffff-ffffffffffff" // Used to detect the version of "xl" format. type formatErasureVersionDetect struct { Erasure struct { Version string `json:"version"` } `json:"xl"` }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 23.1K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
len(out) { break } out[off] |= bb } } return out[:] } // Equal returns 1 if v and u are equal, and 0 otherwise. func (v *Element) Equal(u *Element) int { sa, sv := u.Bytes(), v.Bytes() return subtle.ConstantTimeCompare(sa, sv) } // mask64Bits returns 0xffffffff if cond is 1, and 0 otherwise. func mask64Bits(cond int) uint64 { return ^(uint64(cond) - 1) } // Select sets v to a if cond == 1, and to b if cond == 0. func (v *Element) Select(a, b *Element, cond int) *Element { m := mask64Bits(cond) v.l0 = (m...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
final int size = Encdec.dec_uint16be(buffer, 2) & 0xFFFF; if (size < SMB1_HEADER_LENGTH + 1 || 4 + size > Math.min(0xFFFF, getContext().getConfig().getMaximumBufferSize())) { throw new IOException("Invalid payload size: " + size); } final int errorCode = Encdec.dec_uint32le(buffer, 9) & 0xFFFFFFFF; if (resp.getCommand() == ServerMessageBlock.SMB_COM_READ_ANDX
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0)