Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Thiede (0.22 sec)

  1. src/bytes/reader_test.go

    	type nErr struct {
    		n   int64
    		err error
    	}
    	type justReader struct {
    		io.Reader
    	}
    	type justWriter struct {
    		io.Writer
    	}
    	discard := justWriter{io.Discard} // hide ReadFrom
    
    	var with, withOut nErr
    	with.n, with.err = io.Copy(discard, NewReader(nil))
    	withOut.n, withOut.err = io.Copy(discard, justReader{NewReader(nil)})
    	if with != withOut {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Dec 13 18:45:54 GMT 2021
    - 8K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg syscall (windows-386), const STD_OUTPUT_HANDLE = -11
    pkg syscall (windows-386), const SUBLANG_ENGLISH_US = 1
    pkg syscall (windows-386), const SW_FORCEMINIMIZE = 11
    pkg syscall (windows-386), const SW_HIDE = 0
    pkg syscall (windows-386), const SW_MAXIMIZE = 3
    pkg syscall (windows-386), const SW_MINIMIZE = 6
    pkg syscall (windows-386), const SW_NORMAL = 1
    pkg syscall (windows-386), const SW_RESTORE = 9
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  3. src/archive/tar/format.go

    // or support for sparse files.
    //
    // The Writer currently provides no support for sparse files.
    type Format int
    
    // Constants to identify various tar formats.
    const (
    	// Deliberately hide the meaning of constants from public API.
    	_ Format = (1 << iota) / 4 // Sequence of 0, 0, 1, 2, 4, 8, etc...
    
    	// FormatUnknown indicates that the format is unknown.
    	FormatUnknown
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (windows-386), const STD_OUTPUT_HANDLE ideal-int
    pkg syscall (windows-386), const SUBLANG_ENGLISH_US ideal-int
    pkg syscall (windows-386), const SW_FORCEMINIMIZE ideal-int
    pkg syscall (windows-386), const SW_HIDE ideal-int
    pkg syscall (windows-386), const SW_MAXIMIZE ideal-int
    pkg syscall (windows-386), const SW_MINIMIZE ideal-int
    pkg syscall (windows-386), const SW_NORMAL ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top