- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 359 for 24 (0.01 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt
assertThat(expected.message) .isEqualTo("Invalid dynamic table size update -2147483648") } } /** * http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-12#appendix-C.2.4 */ @Test fun readIndexedHeaderFieldFromStaticTableWithoutBuffering() { bytesIn.writeByte(0x20) // Dynamic table size update (size = 0). bytesIn.writeByte(0x82) // == Indexed - Add ==
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 38.6K bytes - Viewed (0) -
go.mod
github.com/tklauser/numcpus v0.10.0 // indirect github.com/unrolled/secure v1.17.0 // indirect github.com/vbauerster/mpb/v8 v8.9.3 // indirect github.com/xdg/stringprep v1.0.3 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect github.com/zeebo/errs v1.4.0 // indirect go.etcd.io/etcd/client/pkg/v3 v3.5.21 // indirect go.mongodb.org/mongo-driver v1.17.3 // indirect go.opentelemetry.io/auto/sdk v1.1.0 // indirect
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Sep 06 17:33:19 UTC 2025 - 12.3K bytes - Viewed (0) -
api/go1.7.txt
pkg debug/elf, const R_390_GOT16 R_390 pkg debug/elf, const R_390_GOT20 = 58 pkg debug/elf, const R_390_GOT20 R_390 pkg debug/elf, const R_390_GOT32 = 7 pkg debug/elf, const R_390_GOT32 R_390 pkg debug/elf, const R_390_GOT64 = 24 pkg debug/elf, const R_390_GOT64 R_390 pkg debug/elf, const R_390_GOTENT = 26 pkg debug/elf, const R_390_GOTENT R_390 pkg debug/elf, const R_390_GOTOFF = 13 pkg debug/elf, const R_390_GOTOFF R_390
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jun 28 15:08:11 UTC 2016 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
int FLAGS_OFFSET = 9; /** * Offset of signature field in SMB header. */ int SIGNATURE_OFFSET = 14; /** * Offset of tree ID field in SMB header. */ int TID_OFFSET = 24; /** * Length of SMB1 header in bytes. */ int SMB1_HEADER_LENGTH = 32; /** * Milliseconds between January 1, 1970 and January 1, 1601. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
cmd/batch-handlers.go
default: return fmt.Errorf("%s: unknown format: %d", ri.JobType, binary.LittleEndian.Uint16(data[0:2])) } switch binary.LittleEndian.Uint16(data[2:4]) { case version: default: return fmt.Errorf("%s: unknown version: %d", ri.JobType, binary.LittleEndian.Uint16(data[2:4])) } ri.mu.Lock() defer ri.mu.Unlock() // OK, parse data. if _, err = ri.UnmarshalMsg(data[4:]); err != nil { return err }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 63.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.java
buffer[35] = 0x00; return buffer; } private byte[] createMockFileStandardInfoBuffer() { // Create a buffer that represents FileStandardInfo data byte[] buffer = new byte[24]; // Mock allocation size (8 bytes) for (int i = 0; i < 8; i++) { buffer[i] = (byte) i; } // Mock end of file (8 bytes) for (int i = 8; i < 16; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/resources/fess_label_zh_TW.properties
labels.search_click_views={0}次瀏覽 labels.search_result_more=更多.. labels.search_result_cache=快取 labels.search_result_similar=相似結果 ({0}) labels.facet_label_title=標籤 labels.facet_timestamp_title=期間 labels.facet_timestamp_1day=24小時內 labels.facet_timestamp_1week=1週內 labels.facet_timestamp_1month=1個月內 labels.facet_timestamp_1year=1年內 labels.facet_timestamp_3month=3個月內 labels.facet_timestamp_6month=6個月內 labels.facet_timestamp_2year=2年內
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
docs/metrics/prometheus/grafana/bucket/minio-bucket.json
} } ] } ] }, "gridPos": { "h": 6, "w": 6, "x": 0, "y": 24 }, "id": 54, "options": { "legend": { "calcs": [], "displayMode": "list", "placement": "bottom", "showLegend": true },
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Aug 04 01:46:49 UTC 2025 - 101.9K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
/** * Sets the certificate to be valid in ```[notBefore..notAfter]```. Both endpoints are specified * in the format of [System.currentTimeMillis]. Specify -1L for both values to use the default * interval, 24 hours starting when the certificate is created. */ fun validityInterval( notBefore: Long, notAfter: Long, ) = apply {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 21.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java
+ "exposed by the superclass implementation. If the implementation has " + "changed, the code must be re-inspected to ensure that the " + "assumption is still valid.", 24, ReentrantReadWriteLock.class.getMethods().length); } private enum MyOrder { FIRST, SECOND, THIRD; } private enum OtherOrder { FIRST, SECOND,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 16.2K bytes - Viewed (0)