Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 123456789012345678901234567890 (0.23 sec)

  1. 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)
  2. src/archive/tar/testdata/gnu-long-nul.tar

    0123456789 12345678901234567890...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 03:12:47 UTC 2017
    - 2.5K 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. 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)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

        TestFile keyStoreDir
        String encryptionKeyText
        String encryptionKeyAsBase64
    
        def setup() {
            keyStoreDir = new TestFile(testDirectory, 'keystores')
            encryptionKeyText = "01234567890123456789012345678901"
            encryptionKeyAsBase64 = Base64.encoder.encodeToString(encryptionKeyText.getBytes(StandardCharsets.UTF_8))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top