Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestChunk (0.07 sec)

  1. src/slices/iter_test.go

    	if !IsSortedFunc(s, intPairCmp) {
    		t.Errorf("SortedStableFunc didn't sort %d reverse ints", n)
    	}
    	if !s.inOrder(true) {
    		t.Errorf("SortedStableFunc wasn't stable on %d reverse ints", n)
    	}
    }
    
    func TestChunk(t *testing.T) {
    	cases := []struct {
    		name   string
    		s      []int
    		n      int
    		chunks [][]int
    	}{
    		{
    			name:   "nil",
    			s:      nil,
    			n:      1,
    			chunks: nil,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/net/http/internal/chunked_test.go

    // license that can be found in the LICENSE file.
    
    package internal
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"io"
    	"strings"
    	"testing"
    	"testing/iotest"
    )
    
    func TestChunk(t *testing.T) {
    	var b bytes.Buffer
    
    	w := NewChunkedWriter(&b)
    	const chunk1 = "hello, "
    	const chunk2 = "world! 0123456789abcdef"
    	w.Write([]byte(chunk1))
    	w.Write([]byte(chunk2))
    	w.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:45:19 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top