Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ABCDEFGH (0.03 sec)

  1. guava-tests/test/com/google/common/io/MultiReaderTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * @author ricebin
     */
    @NullUnmarked
    public class MultiReaderTest extends TestCase {
    
      public void testOnlyOneOpen() throws Exception {
        String testString = "abcdefgh";
        CharSource source = newCharSource(testString);
        int[] counter = new int[1];
        CharSource reader =
            new CharSource() {
              @Override
              public Reader openStream() throws IOException {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/graph/TraverserTest.java

      }
    
      @Test
      public void forGraph_depthFirstPostOrder_tree() throws Exception {
        Traverser<Character> traverser = Traverser.forGraph(TREE);
    
        assertEqualCharNodes(traverser.depthFirstPostOrder('h'), "abcdefgh");
        assertEqualCharNodes(traverser.depthFirstPostOrder('d'), "abcd");
        assertEqualCharNodes(traverser.depthFirstPostOrder('a'), "a");
      }
    
      @Test
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 47.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/graph/TraverserTest.java

      }
    
      @Test
      public void forGraph_depthFirstPostOrder_tree() throws Exception {
        Traverser<Character> traverser = Traverser.forGraph(TREE);
    
        assertEqualCharNodes(traverser.depthFirstPostOrder('h'), "abcdefgh");
        assertEqualCharNodes(traverser.depthFirstPostOrder('d'), "abcd");
        assertEqualCharNodes(traverser.depthFirstPostOrder('a'), "a");
      }
    
      @Test
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 47.5K bytes
    - Viewed (2)
  4. android/guava/src/com/google/common/primitives/Ints.java

        //     the smaller of these blocks with the far end of the other one. That leaves us with a
        //     smaller version of the same problem.
        //     Say we are rotating abcdefgh by 5. We start with abcde|fgh. The smaller block is [fgh]:
        //     [abc]de|[fgh] -> [fgh]de|[abc]. Now [fgh] is in the right place, but we need to swap [de]
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

      @Test
      fun inputStreamAvailableWithNoLengthHeaders() {
        testInputStreamAvailable(TransferKind.END_OF_STREAM)
      }
    
      private fun testInputStreamAvailable(transferKind: TransferKind) {
        val body = "ABCDEFGH"
        val builder = MockResponse.Builder()
        transferKind.setBody(builder, body, 4)
        server.enqueue(builder.build())
        val response = getResponse(newRequest("/"))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
Back to top