Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for Data2B (0.06 sec)

  1. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            Crawler.Options options = new Crawler.Options();
            options.dataConfigIds = "data1,data2,data3,data4";
    
            List<String> result = options.getDataConfigIdList();
            assertNotNull(result);
            assertEquals(4, result.size());
            assertTrue(result.contains("data1"));
            assertTrue(result.contains("data2"));
            assertTrue(result.contains("data3"));
            assertTrue(result.contains("data4"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java

        void multipleMessagesAreReadSequentially() throws IOException {
            // Create two messages
            byte[] data1 = new byte[] { 1, 2 };
            byte[] data2 = new byte[] { 3, 4, 5 };
            byte[] fullData = concat(messageHeader(2), data1, messageHeader(3), data2);
            InputStream in = new ByteArrayInputStream(fullData);
            SocketInputStream sis = new SocketInputStream(in);
    
            // Read first message
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(data1.streamId).isEqualTo(3)
        assertArrayEquals("abcde".toByteArray(), data1.data)
        val data2 = peer.takeFrame()
        assertThat(data2.type).isEqualTo(Http2.TYPE_DATA)
        assertThat(data2.streamId).isEqualTo(3)
        assertArrayEquals("fghi".toByteArray(), data2.data)
      }
    
      /**
       * Confirm that we account for discarded data frames. It's possible that data frames are in-flight
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 75.5K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (windows-386), type AddrinfoW struct, Socktype int32
    pkg syscall (windows-386), type GUID struct
    pkg syscall (windows-386), type GUID struct, Data1 uint32
    pkg syscall (windows-386), type GUID struct, Data2 uint16
    pkg syscall (windows-386), type GUID struct, Data3 uint16
    pkg syscall (windows-386), type GUID struct, Data4 [8]uint8
    pkg syscall (windows-386), type RawSockaddrInet6 struct, Family uint16
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top