Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 2014 (0.03 sec)

  1. src/mime/quotedprintable/reader_test.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quotedprintable
    
    import (
    	"bufio"
    	"errors"
    	"flag"
    	"fmt"
    	"io"
    	"os/exec"
    	"regexp"
    	"slices"
    	"strings"
    	"testing"
    	"time"
    )
    
    func TestReader(t *testing.T) {
    	tests := []struct {
    		in, want string
    		err      any
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/image/jpeg/reader_test.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package jpeg
    
    import (
    	"bytes"
    	"encoding/base64"
    	"fmt"
    	"image"
    	"image/color"
    	"io"
    	"math/rand"
    	"os"
    	"runtime/debug"
    	"strings"
    	"testing"
    	"time"
    )
    
    // TestDecodeProgressive tests that decoding the baseline and progressive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. src/image/gif/reader_test.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gif
    
    import (
    	"bytes"
    	"compress/lzw"
    	"encoding/hex"
    	"image"
    	"image/color"
    	"image/color/palette"
    	"io"
    	"os"
    	"reflect"
    	"runtime"
    	"runtime/debug"
    	"strings"
    	"testing"
    )
    
    // header, palette and trailer are parts of a valid 2x1 GIF image.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top