Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for abcdefghijk (0.12 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        sink.writeUtf8("abcdefghi")
        sink.close()
    
        // Verify the peer received what was expected.
        val headers1 = peer.takeFrame()
        assertThat(headers1.type).isEqualTo(Http2.TYPE_HEADERS)
        val data1 = peer.takeFrame()
        assertThat(data1.type).isEqualTo(Http2.TYPE_DATA)
        assertThat(data1.streamId).isEqualTo(3)
        assertArrayEquals("abcdefghi".toByteArray(), data1.data)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.input

    	ab: a,
    	abc: a,
    	abcdefgabcdefg: a,
    	abcd: a,
    	abcde: a,
    	abcdef: a,
    
    	// mixed key sizes: align when key sizes change within accepted ratio
    	abcdefgh: a,
    	abcdefghabcdefg: a,
    	abcdefghij: a,
    	abcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij: a, // outlier - do not align with previous line
    	abcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij: a, // align with previous line
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  4. src/runtime/arena_test.go

    	}
    
    	// Clean up the arena.
    	a.Free()
    	GC()
    	GC()
    }
    
    func TestUserArenaCloneString(t *testing.T) {
    	a := NewUserArena()
    
    	// A static string (not on heap or arena)
    	var s = "abcdefghij"
    
    	// Create a byte slice in the arena, initialize it with s
    	var b []byte
    	a.Slice(&b, len(s))
    	copy(b, s)
    
    	// Create a string as using the same memory as the byte slice, hence in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/go/printer/testdata/declarations.golden

    	ab:			a,
    	abc:			a,
    	abcdefgabcdefg:		a,
    	abcd:			a,
    	abcde:			a,
    	abcdef:			a,
    
    	// mixed key sizes: align when key sizes change within accepted ratio
    	abcdefgh:		a,
    	abcdefghabcdefg:	a,
    	abcdefghij:		a,
    	abcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij:	a,	// outlier - do not align with previous line
    	abcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij:		a,	// align with previous line
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
Back to top