- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 414 for 32 (0.01 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
*/ @Test public void readParameterWordsWireFormat_parsesHeaderCorrectly() { DummyResponse d = new DummyResponse(); // Construct a minimal wire format buffer byte[] buf = new byte[32]; int idx = 0; // Write values little-endian buf[idx++] = 5; // totalParameterCount low byte buf[idx++] = 0; // totalParameterCount high byte -> value 5
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrInvalidPolicyDocument-27] _ = x[ErrInvalidObjectState-28] _ = x[ErrMalformedXML-29] _ = x[ErrMissingContentLength-30] _ = x[ErrMissingContentMD5-31] _ = x[ErrMissingRequestBodyError-32] _ = x[ErrMissingSecurityHeader-33] _ = x[ErrNoSuchBucket-34] _ = x[ErrNoSuchBucketPolicy-35] _ = x[ErrNoSuchBucketLifecycle-36] _ = x[ErrNoSuchLifecycleConfiguration-37] _ = x[ErrInvalidLifecycleWithObjectLock-38]
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 21.6K bytes - Viewed (0) -
cmd/xl-storage-format-v1.go
crc ^= xxhash.Sum64(bts) metaDataPoolPut(bts) } // Combine upper and lower part var tmp [4]byte binary.LittleEndian.PutUint32(tmp[:], uint32(crc^(crc>>32))) return tmp } // XL metadata constants. const ( // XL meta version. xlMetaVersion101 = "1.0.1" // XL meta version. xlMetaVersion100 = "1.0.0" // XL meta format string.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 8.4K bytes - Viewed (0) -
docs/ko/docs/tutorial/metadata.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
int bufferIndex = 0; // Reserved bytes buffer[bufferIndex] = 0x00; buffer[bufferIndex + 1] = 0x00; buffer[bufferIndex + 2] = 0x00; // Set all fields to maximum 32-bit values SMBUtil.writeInt4(Integer.MAX_VALUE, buffer, bufferIndex + 3); SMBUtil.writeInt4(Integer.MAX_VALUE, buffer, bufferIndex + 7); SMBUtil.writeInt4(Integer.MAX_VALUE, buffer, bufferIndex + 11);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
api/go1.21.txt
pkg slices, func Compare[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0, $0) int #60091 pkg slices, func CompareFunc[$0 interface{ ~[]$2 }, $1 interface{ ~[]$3 }, $2 interface{}, $3 interface{}]($0, $1, func($2, $3) int) int #60091 pkg slices, func Contains[$0 interface{ ~[]$1 }, $1 comparable]($0, $1) bool #57433
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Aug 07 09:39:17 UTC 2023 - 25.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java
byte[] testBuffer = new byte[200]; ByteBuffer bb = ByteBuffer.wrap(testBuffer).order(ByteOrder.LITTLE_ENDIAN); // DfsReferralResponseBuffer header bb.putShort((short) 32); // pathConsumed (will be divided by 2 = 16) bb.putShort((short) 2); // numReferrals bb.putShort((short) 7); // tflags bb.putShort((short) 0); // tflags high bytes
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.4K bytes - Viewed (0) -
docs/ru/docs/tutorial/security/oauth2-jwt.md
Создайте случайный секретный ключ, который будет использоваться для подписи JWT-токенов. Для генерации безопасного случайного секретного ключа используйте команду: <div class="termy"> ```console $ openssl rand -hex 32 09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7 ``` </div> И скопируйте полученный результат в переменную `SECRET_KEY` (не используйте тот, что в примере).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 18.5K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
├── NetworkInterfaceInfo.java - Network interface discovery ├── ChannelLoadBalancer.java - Load distribution logic └── ChannelFailover.java - Channel failure handling ``` #### 3.2 Implementation Tasks - [ ] Implement FSCTL_QUERY_NETWORK_INTERFACE_INFO - [ ] Create channel binding hash calculation - [ ] Implement channel establishment protocol - [ ] Add request distribution algorithm
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt
replaceWith = ReplaceWith(expression = "cacheControl"), level = DeprecationLevel.ERROR, ) fun cacheControl(): CacheControl = cacheControl override fun toString(): String = buildString(32) { append("Request{method=") append(method) append(", url=") append(url) if (headers.size != 0) { append(", headers=[")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 13.1K bytes - Viewed (1)