Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for checkout (0.22 sec)

  1. src/cmd/api/testdata/src/pkg/p1/p1.go

    	VError = BarE()
    	V1     = Bar1(1, 2, 3)
    	V2     = ptwo.G()
    )
    
    // Variables with conversions:
    var (
    	StrConv  = string("foo")
    	ByteConv = []byte("foo")
    )
    
    var ChecksumError = ptwo.NewError("gzip checksum error")
    
    const B0 = 2
    const StrConst = "foo"
    const FloatConst = 1.5
    
    type myInt int
    
    type MyInt int
    
    type Time struct{}
    
    type S struct {
    	// Deprecated: use PublicTime.
    	Public     *int
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  2. api/go1.3.txt

    pkg debug/pe, type OptionalHeader32 struct, BaseOfCode uint32
    pkg debug/pe, type OptionalHeader32 struct, BaseOfData uint32
    pkg debug/pe, type OptionalHeader32 struct, CheckSum uint32
    pkg debug/pe, type OptionalHeader32 struct, DataDirectory [16]DataDirectory
    pkg debug/pe, type OptionalHeader32 struct, DllCharacteristics uint16
    pkg debug/pe, type OptionalHeader32 struct, FileAlignment uint32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IP_RF ideal-int
    pkg syscall (netbsd-arm64-cgo), const IP_TOS = 3
    pkg syscall (netbsd-arm64-cgo), const IP_TTL = 4
    pkg syscall (netbsd-arm64-cgo), const IPV6_CHECKSUM = 26
    pkg syscall (netbsd-arm64-cgo), const IPV6_CHECKSUM ideal-int
    pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS = 1
    pkg syscall (netbsd-arm64-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. go.env

    # This file contains the initial defaults for go command configuration.
    # Values set by 'go env -w' and written to the user's go/env file override these.
    # The environment overrides everything else.
    
    # Use the Go module mirror and checksum database by default.
    # See https://proxy.golang.org for details.
    GOPROXY=https://proxy.golang.org,direct
    GOSUMDB=sum.golang.org
    
    # Automatically download newer toolchains as directed by go.mod files.
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Jun 06 19:18:46 GMT 2023
    - 505 bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (darwin-386), const IPV6_2292RTHDR = 24
    pkg syscall (darwin-386), const IPV6_BINDV6ONLY = 27
    pkg syscall (darwin-386), const IPV6_BOUND_IF = 125
    pkg syscall (darwin-386), const IPV6_CHECKSUM = 26
    pkg syscall (darwin-386), const IPV6_DEFAULT_MULTICAST_HOPS = 1
    pkg syscall (darwin-386), const IPV6_DEFAULT_MULTICAST_LOOP = 1
    pkg syscall (darwin-386), const IPV6_DEFHLIM = 64
    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)
  6. api/go1.19.txt

    pkg debug/pe, method (*File) COFFSymbolReadSectionDefAux(int) (*COFFSymbolAuxFormat5, error) #51868
    pkg debug/pe, type COFFSymbolAuxFormat5 struct #51868
    pkg debug/pe, type COFFSymbolAuxFormat5 struct, Checksum uint32 #51868
    pkg debug/pe, type COFFSymbolAuxFormat5 struct, NumLineNumbers uint16 #51868
    pkg debug/pe, type COFFSymbolAuxFormat5 struct, NumRelocs uint16 #51868
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  7. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const IPV6_AUTOFLOWLABEL ideal-int
    pkg syscall (freebsd-386-cgo), const IPV6_BINDANY ideal-int
    pkg syscall (freebsd-386-cgo), const IPV6_BINDV6ONLY ideal-int
    pkg syscall (freebsd-386-cgo), const IPV6_CHECKSUM ideal-int
    pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_HOPS ideal-int
    pkg syscall (freebsd-386-cgo), const IPV6_DEFAULT_MULTICAST_LOOP ideal-int
    pkg syscall (freebsd-386-cgo), const IPV6_DEFHLIM 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)
  8. src/archive/tar/format.go

    // getFormat checks that the block is a valid tar header based on the checksum.
    // It then attempts to guess the specific format based on magic values.
    // If the checksum fails, then FormatUnknown is returned.
    func (b *block) getFormat() Format {
    	// Verify checksum.
    	var p parser
    	value := p.parseOctal(b.toV7().chksum())
    	chksum1, chksum2 := b.computeChecksum()
    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)
  9. src/archive/zip/struct.go

    	//
    	// Deprecated: Use Modified instead.
    	ModifiedTime uint16
    
    	// ModifiedDate is an MS-DOS-encoded date.
    	//
    	// Deprecated: Use Modified instead.
    	ModifiedDate uint16
    
    	// CRC32 is the CRC32 checksum of the file content.
    	CRC32 uint32
    
    	// CompressedSize is the compressed size of the file in bytes.
    	// If either the uncompressed or compressed size of the file
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  10. src/archive/zip/reader.go

    var zipinsecurepath = godebug.New("zipinsecurepath")
    
    var (
    	ErrFormat       = errors.New("zip: not a valid zip file")
    	ErrAlgorithm    = errors.New("zip: unsupported compression algorithm")
    	ErrChecksum     = errors.New("zip: checksum error")
    	ErrInsecurePath = errors.New("zip: insecure file path")
    )
    
    // A Reader serves content from a ZIP archive.
    type Reader struct {
    	r             io.ReaderAt
    	File          []*File
    	Comment       string
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
Back to top