Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Draxler (0.34 sec)

  1. src/archive/tar/writer.go

    // then this returns an error.
    func (tw *Writer) Close() error {
    	if tw.err == ErrWriteAfterClose {
    		return nil
    	}
    	if tw.err != nil {
    		return tw.err
    	}
    
    	// Trailer: two zero blocks.
    	err := tw.Flush()
    	for i := 0; i < 2 && err == nil; i++ {
    		_, err = tw.w.Write(zeroBlock[:])
    	}
    
    	// Ensure all future actions are invalid.
    	tw.err = ErrWriteAfterClose
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg syscall (linux-386), const ETH_P_SNAP = 5
    pkg syscall (linux-386), const ETH_P_TEB = 25944
    pkg syscall (linux-386), const ETH_P_TIPC = 35018
    pkg syscall (linux-386), const ETH_P_TRAILER = 28
    pkg syscall (linux-386), const ETH_P_TR_802_2 = 17
    pkg syscall (linux-386), const ETH_P_WAN_PPP = 7
    pkg syscall (linux-386), const ETH_P_WCCP = 34878
    pkg syscall (linux-386), const ETH_P_X25 = 2053
    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. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const ETH_P_SNAP ideal-int
    pkg syscall (linux-arm-cgo), const ETH_P_TEB ideal-int
    pkg syscall (linux-arm-cgo), const ETH_P_TIPC ideal-int
    pkg syscall (linux-arm-cgo), const ETH_P_TRAILER ideal-int
    pkg syscall (linux-arm-cgo), const ETH_P_TR_802_2 ideal-int
    pkg syscall (linux-arm-cgo), const ETH_P_WAN_PPP ideal-int
    pkg syscall (linux-arm-cgo), const ETH_P_WCCP ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  4. src/archive/tar/fuzz_test.go

    		}
    		if err := w.Close(); err != nil {
    			t.Fatalf("Unable to write archive: %s", err)
    		}
    
    		// TODO: We may want to check if the archive roundtrips. This would require
    		// taking into account addition of the two zero trailer blocks that Writer.Close
    		// appends.
    	})
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  5. src/archive/tar/format.go

    		return FormatUnknown
    	}
    
    	// Guess the magic values.
    	magic := string(b.toUSTAR().magic())
    	version := string(b.toUSTAR().version())
    	trailer := string(b.toSTAR().trailer())
    	switch {
    	case magic == magicUSTAR && trailer == trailerSTAR:
    		return formatSTAR
    	case magic == magicUSTAR:
    		return FormatUSTAR | FormatPAX
    	case magic == magicGNU && version == versionGNU:
    		return FormatGNU
    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)
  6. api/go1.8.txt

    pkg math/rand, type Source64 interface, Seed(int64)
    pkg math/rand, type Source64 interface, Uint64() uint64
    pkg net/http, const TrailerPrefix ideal-string
    pkg net/http, const TrailerPrefix = "Trailer:"
    pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeDone func(tls.ConnectionState, error)
    pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeStart func()
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Dec 21 05:25:57 GMT 2016
    - 16.3K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg net/http, type Request struct, RemoteAddr string
    pkg net/http, type Request struct, RequestURI string
    pkg net/http, type Request struct, TLS *tls.ConnectionState
    pkg net/http, type Request struct, Trailer Header
    pkg net/http, type Request struct, TransferEncoding []string
    pkg net/http, type Request struct, URL *url.URL
    pkg net/http, type Response struct
    pkg net/http, type Response struct, Body io.ReadCloser
    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