Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 637 for 1900 (0.08 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketWriterTest.kt

          serverWriter.writePing(binaryData(1000))
        }.also { expected ->
          assertThat(expected.message).isEqualTo(
            "Payload size must be less than or equal to 125",
          )
        }
      }
    
      @Test fun pongTooLongThrows() {
        assertFailsWith<IllegalArgumentException> {
          serverWriter.writePong((binaryData(1000)))
        }.also { expected ->
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

        public void test_getDetectText_longText() {
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 1100; i++) {
                sb.append("a");
            }
            String longText = sb.toString();
    
            String result = languageHelper.getDetectText(longText);
            assertEquals(1000, result.length());
        }
    
        public void test_getDetectText_whitespaceNormalization() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/fonts/fa-solid-900.svg

    fa-solid-900.svg...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 829.2K bytes
    - Viewed (0)
  4. src/main/webapp/css/admin/fonts/fa-solid-900.woff2

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 74.3K bytes
    - Viewed (0)
  5. src/main/webapp/css/fonts/fa-solid-900.ttf

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 189.2K bytes
    - Viewed (0)
  6. src/main/webapp/css/fonts/fa-solid-900.woff

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 96.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

                SMBUtil.writeInt2(1, buffer1, 2);
                SMBUtil.writeInt8(1000, buffer1, 40);
                SMBUtil.writeInt8(500, buffer1, 48);
                SMBUtil.writeInt4(0x01, buffer1, 56);
    
                response.readBytesWireFormat(buffer1, 0);
    
                assertEquals(1, response.getCloseFlags());
                assertEquals(1000, response.getAllocationSize());
                assertEquals(500, response.getEndOfFile());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/com/SmbComQueryInformationResponseTest.java

            // Verify time was read correctly (accounting for UTime conversion)
            long readTime = (Long) getFieldValue(response, "lastWriteTime");
            // UTime is seconds since 1970, so we need to compare at second precision
            assertEquals(lastWriteTime / 1000, readTime / 1000);
        }
    
        @Test
        void testReadParameterWordsWireFormatWithZeroWordCount() {
            // Test reading when wordCount is 0
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/smb1/Trans2GetDfsReferralTest.java

            void setup() {
                assertEquals(0, cmd.readSetupWireFormat(new byte[10], 0, 0));
            }
    
            @Test
            void parameters() {
                assertEquals(0, cmd.readParametersWireFormat(new byte[10], 0, 0));
            }
    
            @Test
            void data() {
                assertEquals(0, cmd.readDataWireFormat(new byte[10], 0, 0));
            }
        }
    
        @Test
        @DisplayName("toString format")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java

            @DisplayName("Should throw exception when data exceeds buffer")
            void testWriteBytesWireFormatDataExceedsBuffer() {
                byte[] largeData = new byte[1000];
                request.setData(largeData, 0, largeData.length);
    
                byte[] smallBuffer = new byte[100];
    
                IllegalArgumentException exception =
                        assertThrows(IllegalArgumentException.class, () -> request.writeBytesWireFormat(smallBuffer, 0));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.4K bytes
    - Viewed (0)
Back to top