Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LINE_SEP (0.04 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/logging/LoggingOutputStream.java

            }
        }
    
        static class EolBaos extends ByteArrayOutputStream {
            boolean isEol() {
                if (count >= LINE_SEP.length) {
                    for (int i = 0; i < LINE_SEP.length; i++) {
                        if (buf[count - LINE_SEP.length + i] != LINE_SEP[i]) {
                            return false;
                        }
                    }
                    return true;
                }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Feb 12 12:31:43 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top