- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 69 for 63 (0.01 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt
bytesIn.writeUtf8("custom-key") bytesIn.writeByte(0x0d) // Literal value (len = 13) bytesIn.writeUtf8("custom-header") bytesIn.writeByte(0xbe) // Indexed name and value (idx = 63) hpackWriter!!.writeHeaders(headerBlock) assertThat(bytesOut).isEqualTo(bytesIn) assertThat(hpackWriter!!.headerCount).isEqualTo(1) val entry = hpackWriter!!.dynamicTable[hpackWriter!!.dynamicTable.size - 1]!!
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 38.6K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrRemoteTargetDenyAddError-59] _ = x[ErrReplicationNoExistingObjects-60] _ = x[ErrReplicationValidationError-61] _ = x[ErrReplicationPermissionCheckError-62] _ = x[ErrObjectRestoreAlreadyInProgress-63] _ = x[ErrNoSuchKey-64] _ = x[ErrNoSuchUpload-65] _ = x[ErrInvalidVersionID-66] _ = x[ErrNoSuchVersion-67] _ = x[ErrNotImplemented-68] _ = x[ErrPreconditionFailed-69] _ = x[ErrRequestTimeTooSkewed-70]
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 21.6K bytes - Viewed (0) -
go.mod
github.com/miekg/dns v1.1.65 github.com/minio/cli v1.24.2 github.com/minio/console v1.7.7-0.20250905210349-2017f33b26e1 github.com/minio/csvparser v1.0.0 github.com/minio/dnscache v0.1.1 github.com/minio/dperf v0.6.3 github.com/minio/highwayhash v1.0.3 github.com/minio/kms-go/kes v0.3.1 github.com/minio/kms-go/kms v0.5.1-0.20250225090116-4e64ce8d0f35 github.com/minio/madmin-go/v3 v3.0.109 github.com/minio/minio-go/v7 v7.0.91
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Sep 06 17:33:19 UTC 2025 - 12.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HostnamesCommon.kt
fun String.canParseAsIpAddress(): Boolean = VERIFY_AS_IP_ADDRESS.matches(this) /** * Returns true if the length is not valid for DNS (empty or greater than 253 characters), or if any * label is longer than 63 characters. Trailing dots are okay. */ internal fun String.containsInvalidLabelLengths(): Boolean { if (length !in 1..253) return true var labelStart = 0 while (true) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 11.2K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedLongs.java
* prefix, or when one array is a prefix of the other, treats the shorter array as the lesser. For * example, {@code [] < [1L] < [1L, 2L] < [2L] < [1L << 63]}. * * <p>The returned comparator is inconsistent with {@link Object#equals(Object)} (since arrays * support only identity equality), but it is consistent with {@link Arrays#equals(long[], * long[])}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 17.8K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
- [ ] Add notification callback mechanism - [ ] Create resource monitoring - [ ] Implement automatic re-registration - [ ] Add cluster node tracking - [ ] Create failover coordination #### 6.3 Integration Points - Integrate with `CIFSContext` for witness support - Modify `SmbTransport` for failover handling - Update `DfsResolver` for witness-aware resolution --- ## Implementation Dependencies
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmSspTest.java
message[59] = 0; // Flags (NTLMSSP_NEGOTIATE_UNICODE) message[60] = 0x01; // NTLMSSP_NEGOTIATE_UNICODE message[61] = 0x00; message[62] = 0x00; message[63] = 0x00; // Add dummy LM response (24 zeros at offset 64) for (int i = 0; i < 24; i++) { message[64 + i] = 0; } // Add dummy NT response (24 zeros at offset 88)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
assertFalse(Utf8.isWellFormed(toByteArray(bytes))); } private static long[] generateFourByteShardsExpectedRunnables() { long[] expected = new long[128]; // 0-63 are all 5300224 for (int i = 0; i <= 63; i++) { expected[i] = 5300224; } // 97-111 are all 2342912 for (int i = 97; i <= 111; i++) { expected[i] = 2342912; } // 113-117 are all 1048576
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
if (leaseKey != null) { LeaseEntry entry = leaseManager.getLease(leaseKey); return entry != null && entry.hasHandleCache(); } return false; } ``` ### 6.3 Transport Layer Integration ```java // In SmbTransport.java private void handleIncomingMessage(ServerMessageBlock2 msg) { if (msg instanceof Smb2LeaseBreakNotification) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
throw new IOException("Connection lost and reconnection failed", e); } } else { throw e; // No durable handle, propagate error } } ``` ### 6.3 Session Integration ```java // In SmbSession.java private PersistentHandleManager handleManager; public SmbSession(CIFSContext context, SmbTransport transport) { // ... existing initialization ...
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0)