Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for MAX_BUF_SIZE (0.05 seconds)

  1. src/main/java/org/codelibs/core/io/FileUtil.java

                    if (size == bufferSize) {
                        // Enforce MAX_BUF_SIZE to prevent unbounded memory growth
                        final int newBufferSize = bufferSize + initialCapacity;
                        if (newBufferSize > MAX_BUF_SIZE) {
                            throw new IORuntimeException(new IOException("Content too large: exceeds maximum buffer size of " + MAX_BUF_SIZE
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Feb 12 12:10:45 GMT 2026
    - 13.2K bytes
    - Click Count (0)
Back to Top