Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for miner (0.21 sec)

  1. doc/initial/6-stdlib/99-minor/0-heading.md

    ### Minor changes to the library {#minor_library_changes}...
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jan 22 18:07:49 GMT 2024
    - 60 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/swig/swig_test.go

    	atoi := func(s string) int {
    		x, err := strconv.Atoi(s)
    		if err != nil && parseError == nil {
    			parseError = err
    		}
    		return x
    	}
    	var major, minor, patch int
    	major = atoi(string(matches[1]))
    	if len(matches[2]) > 0 {
    		minor = atoi(string(matches[2][1:]))
    	}
    	if len(matches[3]) > 0 {
    		patch = atoi(string(matches[3][1:]))
    	}
    	if parseError != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const BPF_MINBUFSIZE = 32
    pkg syscall (netbsd-arm64-cgo), const BPF_MINBUFSIZE ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_MINOR_VERSION = 1
    pkg syscall (netbsd-arm64-cgo), const BPF_MINOR_VERSION ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_MISC = 7
    pkg syscall (netbsd-arm64-cgo), const BPF_MISC ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_MSH = 160
    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. doc/README.md

    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    corresponding to standard library package paths, and headings for those package
    paths will be generated automatically.
    
    Files in this repo's `api/next` directory must have corresponding files in
    `doc/next/*stdlib/*minor`.
    The files should be in the subdirectory for the package with the new
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 21:24:36 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (darwin-386), const BPF_MEM = 96
    pkg syscall (darwin-386), const BPF_MEMWORDS = 16
    pkg syscall (darwin-386), const BPF_MINBUFSIZE = 32
    pkg syscall (darwin-386), const BPF_MINOR_VERSION = 1
    pkg syscall (darwin-386), const BPF_MISC = 7
    pkg syscall (darwin-386), const BPF_MSH = 160
    pkg syscall (darwin-386), const BPF_MUL = 32
    pkg syscall (darwin-386), const BPF_NEG = 128
    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. src/archive/tar/stat_unix.go

    		case "freebsd":
    			// Copied from golang.org/x/sys/unix/dev_freebsd.go.
    			major := uint32((dev >> 8) & 0xff)
    			minor := uint32(dev & 0xffff00ff)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "netbsd":
    			// Copied from golang.org/x/sys/unix/dev_netbsd.go.
    			major := uint32((dev & 0x000fff00) >> 8)
    			minor := uint32((dev & 0x000000ff) >> 0)
    			minor |= uint32((dev & 0xfff00000) >> 12)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/0-heading.md

    ### Minor changes to the library {#minor_library_changes}...
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:44:53 GMT 2024
    - 60 bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const BPF_MEM ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_MEMWORDS ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_MINBUFSIZE ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_MINOR_VERSION ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_MISC ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_MSH ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_MUL 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)
  9. src/archive/tar/common.go

    	paxGNUSparseNumBytes  = "GNU.sparse.numbytes"
    	paxGNUSparseMap       = "GNU.sparse.map"
    	paxGNUSparseName      = "GNU.sparse.name"
    	paxGNUSparseMajor     = "GNU.sparse.major"
    	paxGNUSparseMinor     = "GNU.sparse.minor"
    	paxGNUSparseSize      = "GNU.sparse.size"
    	paxGNUSparseRealSize  = "GNU.sparse.realsize"
    )
    
    // basicKeys is a set of the PAX keys for which we have built-in support.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  10. src/archive/tar/reader_test.go

    			Typeflag: 0x30,
    			Linkname: "",
    			Uname:    "david",
    			Gname:    "david",
    			Devmajor: 0,
    			Devminor: 0,
    			PAXRecords: map[string]string{
    				"GNU.sparse.major":    "1",
    				"GNU.sparse.minor":    "0",
    				"GNU.sparse.realsize": "200",
    				"GNU.sparse.name":     "sparse-posix-1.0",
    			},
    			Format: FormatPAX,
    		}, {
    			Name:     "end",
    			Mode:     420,
    			Uid:      1000,
    			Gid:      1000,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
Back to top