Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 2014 (0.04 sec)

  1. src/mime/quotedprintable/reader.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 implements quoted-printable encoding as specified by
    // RFC 2045.
    package quotedprintable
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"io"
    )
    
    // Reader is a quoted-printable decoder.
    type Reader struct {
    	br   *bufio.Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 27 17:00:08 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  2. src/net/textproto/reader.go

    // Copyright 2010 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 textproto
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"math"
    	"strconv"
    	"strings"
    	"sync"
    	_ "unsafe" // for linkname
    )
    
    // TODO: This should be a distinguishable error (ErrMessageTooLarge)
    // to allow mime/multipart to detect it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. src/encoding/csv/reader.go

    // Copyright 2011 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 csv reads and writes comma-separated values (CSV) files.
    // There are many kinds of CSV files; this package supports the format
    // described in RFC 4180, except that [Writer] uses LF
    // instead of CRLF as newline character by default.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. src/image/gif/reader.go

    // Copyright 2011 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 implements a GIF image decoder and encoder.
    //
    // The GIF specification is at https://www.w3.org/Graphics/GIF/spec-gif89a.txt.
    package gif
    
    import (
    	"bufio"
    	"compress/lzw"
    	"errors"
    	"fmt"
    	"image"
    	"image/color"
    	"io"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/debug/elf/reader.go

    // Copyright 2015 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 elf
    
    import (
    	"io"
    	"os"
    )
    
    // errorReader returns error from all operations.
    type errorReader struct {
    	error
    }
    
    func (r errorReader) Read(p []byte) (n int, err error) {
    	return 0, r.error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:06:17 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. src/compress/lzw/reader.go

    // Copyright 2011 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 lzw implements the Lempel-Ziv-Welch compressed data format,
    // described in T. A. Welch, “A Technique for High-Performance Data
    // Compression”, Computer, 17(6) (June 1984), pp 8-19.
    //
    // In particular, it implements LZW as used by the GIF and PDF file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top