- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 102 for 0x1000 (0.03 sec)
-
guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java
/** * Benchmarks for certain methods of {@code UnsignedLongs}. * * @author Eamonn McManus */ @NullUnmarked public class UnsignedLongsBenchmark { private static final int ARRAY_SIZE = 0x10000; private static final int ARRAY_MASK = 0x0ffff; private static final Random randomSource = new Random(314159265358979L); private static final long[] longs = new long[ARRAY_SIZE];
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateResponse.java
/** * Create new RDMA negotiation response */ public RdmaNegotiateResponse() { // Initialize with default values this.status = 0; // Success this.selectedVersion = 0x0100; // SMB Direct 1.0 this.creditsGranted = 0; this.maxReceiveSize = RdmaCapabilities.DEFAULT_MAX_RECEIVE_SIZE; this.maxReadWriteSize = RdmaCapabilities.DEFAULT_MAX_READ_WRITE_SIZE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2.kt
@JvmField val CONNECTION_PREFACE = "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n".encodeUtf8() /** The initial max frame size, applied independently writing to, or reading from the peer. */ const val INITIAL_MAX_FRAME_SIZE = 0x4000 // 16384 const val TYPE_DATA = 0x0 const val TYPE_HEADERS = 0x1 const val TYPE_PRIORITY = 0x2 const val TYPE_RST_STREAM = 0x3 const val TYPE_SETTINGS = 0x4 const val TYPE_PUSH_PROMISE = 0x5
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/util/SMBUtilTest.java
(byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, // 0x0000000000000000L (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 }; assertEquals(0x123456789ABCDEF0L, SMBUtil.readInt8(src, 0)); assertEquals(0xFFFFFFFFFFFFFFFFL, SMBUtil.readInt8(src, 8));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java
closeFlagsField.setAccessible(true); int finalFlags = (int) closeFlagsField.get(request); assertEquals(0x0000, finalFlags); // Verify wire format reflects final state byte[] buffer = new byte[256]; request.writeBytesWireFormat(buffer, 0); assertEquals(0x0000, SMBUtil.readInt2(buffer, 2)); byte[] wireFileId = new byte[16]; System.arraycopy(buffer, 8, wireFileId, 0, 16);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbPipeResource.java
*/ int PIPE_TYPE_CALL = 0x0100; /** * Pipe operations should behave like the <code>TransactNamedPipe</code> Win32 Named Pipe function. */ int PIPE_TYPE_TRANSACT = 0x0200; /** * Pipe is used for DCE */ int PIPE_TYPE_DCE_TRANSACT = 0x0200 | 0x0400; /** * Pipe should use it's own exclusive transport connection */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosToken.java
throw new PACDecodingException("Empty kerberos token"); } byte[] content; try (ASN1InputStream stream = new ASN1InputStream(token)) { content = ASN1Util.readUnparsedTagged(0, 0x8000, stream); } catch (IOException e) { throw new PACDecodingException("Malformed kerberos token", e); } try (ASN1InputStream stream = new ASN1InputStream(content)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java
String query = "*"; int allRecordCount = 1000; int pageSize = 100; int offset = 50; try (RankFusionProcessor rankFusionProcessor = new RankFusionProcessor()) { rankFusionProcessor.setSeacher(new TestMainSearcher(allRecordCount)); rankFusionProcessor.register(new TestSubSearcher(0, 0, 1000)); rankFusionProcessor.init();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 25.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
} } // 128 - [chars 0x0000 to 0x007f] private static final long ONE_BYTE_ROUNDTRIPPABLE_CHARACTERS = 0x007f - 0x0000 + 1; // 128 private static final long EXPECTED_ONE_BYTE_ROUNDTRIPPABLE_COUNT = ONE_BYTE_ROUNDTRIPPABLE_CHARACTERS; // 1920 [chars 0x0080 to 0x07FF] private static final long TWO_BYTE_ROUNDTRIPPABLE_CHARACTERS = 0x07FF - 0x0080 + 1; // 18,304
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0)