Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 2014 (0.05 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/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)
  3. 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