headerListSizeBoundCheck() — netty Function Reference
Architecture documentation for the headerListSizeBoundCheck() function in Http2SettingsTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 5f089d24_6199_ef21_5a8d_dadbf6cecd02["headerListSizeBoundCheck()"] 910ec026_5946_ddbf_7e19_bbbdae11da3a["Http2SettingsTest"] 5f089d24_6199_ef21_5a8d_dadbf6cecd02 -->|defined in| 910ec026_5946_ddbf_7e19_bbbdae11da3a style 5f089d24_6199_ef21_5a8d_dadbf6cecd02 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java lines 100–109
@ParameterizedTest(name = "{displayName} [{index}] value={0}")
@ValueSource(longs = {MIN_VALUE, MIN_HEADER_LIST_SIZE - 1L, MAX_HEADER_LIST_SIZE + 1L, MAX_VALUE})
public void headerListSizeBoundCheck(final long value) {
assertThrows(IllegalArgumentException.class, new Executable() {
@Override
public void execute() {
settings.maxHeaderListSize(value);
}
});
}
Domain
Subdomains
Source
Frequently Asked Questions
What does headerListSizeBoundCheck() do?
headerListSizeBoundCheck() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java.
Where is headerListSizeBoundCheck() defined?
headerListSizeBoundCheck() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java at line 100.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free