Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 0x1234 (0.78 sec)

  1. src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java

    public class ContentOutputStreamTest {
    
        @Test
        public void inMemory() throws IOException {
            ContentOutputStream cos = new ContentOutputStream(10, Curl.tmpDir);
            cos.write(new byte[] { 0, 1, 2, 3, 4 });
            assertFalse(cos.done);
            assertTrue(cos.isInMemory());
            cos.close();
            assertFalse(cos.done);
        }
    
        @Test
        public void inFile() throws IOException {
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Wed Nov 12 14:01:04 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java

            byte[] buffer = new byte[10];
            int bytesRead = stream.read(buffer, 2, 5);
    
            assertEquals(5, bytesRead);
            assertEquals("01234", new String(buffer, 2, 5));
        }
    
        public void test_available_delegatesToUnderlying() throws IOException {
            // Test that available() delegates to underlying stream
            byte[] data = "Test data".getBytes();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. MIGRATION.md

    curl "http://localhost:8080/json/?q=search&num=10"
    ```
    
    **Response**:
    ```json
    {
      "response": {
        "version": 1,
        "status": 0,
        "q": "search",
        "exec_time": 0.123,
        "page_size": 10,
        "page_number": 1,
        "record_count": 234,
        "result": [
          {
            "url": "http://example.com/page1",
            "title": "Example Page",
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

            <match value="0xF" type="big32" offset="4"/>
            <match value="0x10" type="big32" offset="4"/>
            <match value="0x11" type="big32" offset="4"/>
            <match value="0x12" type="big32" offset="4"/>
            <match value="0x13" type="big32" offset="4"/>
          </match>
          <match value="0xBEBAFECA" type="string" offset="0">
            <match value="0x1" type="little32" offset="4"/>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Oct 16 07:46:32 UTC 2025
    - 320.2K bytes
    - Viewed (2)
Back to top