Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 12345678901234567890123456789 (0.31 sec)

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

            thrown(IOException)
        }
    
        def splitsLongLines() {
            when:
            LineBufferingOutputStream outputStream = new LineBufferingOutputStream(action, eol, 8, 13)
            outputStream.write("12345678901234567890123456789".getBytes())
            outputStream.close()
    
            then:
            action.text("1234567890123")
            action.text("4567890123456")
            action.text("789")
            action.endOfStream(null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java

            Map<String, Object> dataMap = new HashMap<>();
            assertEquals("1234567...", documentHelper.getDigest(responseData, " 1234567890  1234567890  1234567890 ", dataMap, 10));
            assertEquals("1234567...", documentHelper.getDigest(responseData, "123456789012345678901234567890", dataMap, 10));
            assertEquals("1234567...", documentHelper.getDigest(responseData, "123456789012345678901", dataMap, 10));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/StatusLine.kt

        }
    
        @Throws(IOException::class)
        fun parse(statusLine: String): StatusLine {
          // H T T P / 1 . 1   2 0 0   T e m p o r a r y   R e d i r e c t
          // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0
    
          // Parse protocol like "HTTP/1.1" followed by a space.
          val codeStart: Int
          val protocol: Protocol
          if (statusLine.startsWith("HTTP/1.")) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/strconv/ftoa_test.go

    }{
    	{"Decimal", 33909, 'g', -1, 64},
    	{"Float", 339.7784, 'g', -1, 64},
    	{"Exp", -5.09e75, 'g', -1, 64},
    	{"NegExp", -5.11e-95, 'g', -1, 64},
    	{"LongExp", 1.234567890123456e-78, 'g', -1, 64},
    
    	{"Big", 123456789123456789123456789, 'g', -1, 64},
    	{"BinaryExp", -1, 'b', -1, 64},
    
    	{"32Integer", 33909, 'g', -1, 32},
    	{"32ExactFraction", 3.375, 'g', -1, 32},
    	{"32Point", 339.7784, 'g', -1, 32},
    	{"32Exp", -5.09e25, 'g', -1, 32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top