Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for allocateSpace (0.11 sec)

  1. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

            }
        }
    
        public void readFrom(InputStream inputStream, int len) throws IOException {
            int bytesLeft = len;
            while (bytesLeft > 0) {
                int spaceLeft = allocateSpace();
                int limit = Math.min(spaceLeft, bytesLeft);
                int readBytes = currentWriteChunk.readFrom(inputStream, limit);
                if (readBytes == -1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top