Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for abcdeff (0.31 sec)

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

        protocol: Protocol,
        mockWebServer: MockWebServer,
      ) {
        setUp(protocol, mockWebServer)
        server.enqueue(MockResponse(body = "ABCDE"))
        val call = client.newCall(Request(server.url("/foo")))
        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("ABCDE")
        assertThat(response.code).isEqualTo(200)
        assertThat(response.message).isEqualTo("")
        assertThat(response.protocol).isEqualTo(protocol)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(ping.type).isEqualTo(Http2.TYPE_PING)
        val data1 = peer.takeFrame()
        assertThat(data1.type).isEqualTo(Http2.TYPE_DATA)
        assertThat(data1.streamId).isEqualTo(3)
        assertArrayEquals("abcdef".toByteArray(), data1.data)
      }
    
      @Test fun readSendsWindowUpdateHttp2() {
        val windowSize = 100
        val windowUpdateThreshold = 50
    
        // Write the mocking script.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. src/crypto/des/des_test.go

    	{
    		[]byte{0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68}, // "abcdefgh"
    		[]byte{0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68}, // "abcdefgh"
    		[]byte{0x2a, 0x8d, 0x69, 0xde, 0x9d, 0x5f, 0xdf, 0xf9}},
    	{
    		[]byte{0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68}, // "abcdefgh"
    		[]byte{0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38}, // "12345678"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    		return fmt.Errorf("Read = %d, %v, data %q; want 6, nil, foobar", n, err, buf)
    	}
    
    	srv.Write([]byte("abcdef"))
    	srv.Close()
    	time.Sleep(delay)
    	n, err = conn.Read(buf)
    	if n != 6 || string(buf) != "abcdef" {
    		return fmt.Errorf("Read = %d, buf= %q; want 6, abcdef", n, buf)
    	}
    	if err != io.EOF {
    		return fmt.Errorf("Second Read error = %v; want io.EOF", err)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"%5s", "abcdefghijklmnopqrstuvwxyz", "abcdefghijklmnopqrstuvwxyz"},
    	{"%5s", []byte("abcdefghijklmnopqrstuvwxyz"), "abcdefghijklmnopqrstuvwxyz"},
    	{"%.5s", "abcdefghijklmnopqrstuvwxyz", "abcde"},
    	{"%.5s", []byte("abcdefghijklmnopqrstuvwxyz"), "abcde"},
    	{"%.0s", "日本語日本語", ""},
    	{"%.0s", []byte("日本語日本語"), ""},
    	{"%.5s", "日本語日本語", "日本語日本"},
    	{"%.5s", []byte("日本語日本語"), "日本語日本"},
    	{"%.10s", "日本語日本語", "日本語日本語"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. src/bufio/bufio_test.go

    	for rno, read := range readers {
    		// Some input data that is longer than the minimum reader buffer size.
    		const n = 10
    		var buf bytes.Buffer
    		for i := 0; i < n; i++ {
    			buf.WriteString("abcdefg")
    		}
    
    		r := NewReaderSize(&buf, minReadBufferSize)
    		readTo := func(delim byte, want string) {
    			data, err := read(r, delim)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  7. src/strings/strings_test.go

    			t.Errorf(`IndexByte(%q, %q) = %v; want %v`, tt.s, tt.sep[0], pos, tt.out)
    		}
    	}
    }
    
    func TestLastIndexByte(t *testing.T) {
    	testCases := []IndexTest{
    		{"", "q", -1},
    		{"abcdef", "q", -1},
    		{"abcdefabcdef", "a", len("abcdef")},      // something in the middle
    		{"abcdefabcdef", "f", len("abcdefabcde")}, // last byte
    		{"zabcdefabcdef", "z", 0},                 // first byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    			t.Errorf(`indexBytePortable(%q, '%c') = %v`, tt.a, b, posp)
    		}
    	}
    }
    
    func TestLastIndexByte(t *testing.T) {
    	testCases := []BinOpTest{
    		{"", "q", -1},
    		{"abcdef", "q", -1},
    		{"abcdefabcdef", "a", len("abcdef")},      // something in the middle
    		{"abcdefabcdef", "f", len("abcdefabcde")}, // last byte
    		{"zabcdefabcdef", "z", 0},                 // first byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. cmd/xl-storage_test.go

    			srcPath:         "abc/def/ghi",
    			expectedListDir: []string{"success-file"},
    			expectedErr:     nil,
    		},
    		// TestXLStorage case - 2.
    		{
    			srcVol:      "success-vol",
    			srcPath:     "abcdef",
    			expectedErr: errFileNotFound,
    		},
    		// TestXLStorage case - 3.
    		// TestXLStorage case with invalid volume name.
    		{
    			srcVol:      "ab",
    			srcPath:     "success-file",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    	for i := 0; i < 48; i++ {
    		s := v1.ContainerStatus{
    			Name: fmt.Sprintf("container%d", i),
    			LastTerminationState: v1.ContainerState{
    				Terminated: &v1.ContainerStateTerminated{
    					Message: strings.Repeat("abcdefgh", 24+i%3),
    				},
    			},
    		}
    		containerStatus = append(containerStatus, s)
    	}
    	podStatus := v1.PodStatus{
    		InitContainerStatuses: containerStatus[:24],
    		ContainerStatuses:     containerStatus[24:],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top