Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for logsPartialLineOnClose (0.22 sec)

  1. subprojects/core/src/test/groovy/org/gradle/util/LineBufferingOutputStreamTest.groovy

            when:
            outputStream.write("line 1-".getBytes())
            outputStream.close()
    
            then:
            action.text("line 1-")
            action.endOfStream(null)
        }
    
        def logsPartialLineOnClose()  {
            LineBufferingOutputStream outputStream = new LineBufferingOutputStream(action, eol, 8)
    
            when:
            outputStream.write("line 1".getBytes())
            outputStream.close()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 5.3K bytes
    - Viewed (0)
Back to top