Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Savers (0.3 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64), const SYSCTL_VERS_0 = 0
    pkg syscall (netbsd-arm64), const SYSCTL_VERS_0 ideal-int
    pkg syscall (netbsd-arm64), const SYSCTL_VERS_1 = 16777216
    pkg syscall (netbsd-arm64), const SYSCTL_VERS_1 ideal-int
    pkg syscall (netbsd-arm64), const SYSCTL_VERSION = 16777216
    pkg syscall (netbsd-arm64), const SYSCTL_VERSION ideal-int
    pkg syscall (netbsd-arm64), const SYSCTL_VERS_MASK = 4278190080
    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)
  2. api/go1.1.txt

    pkg syscall (netbsd-386), const SO_USELOOPBACK = 64
    pkg syscall (netbsd-386), const SYSCTL_VERSION = 16777216
    pkg syscall (netbsd-386), const SYSCTL_VERS_0 = 0
    pkg syscall (netbsd-386), const SYSCTL_VERS_1 = 16777216
    pkg syscall (netbsd-386), const SYSCTL_VERS_MASK = 4278190080
    pkg syscall (netbsd-386), const SYS_ACCEPT = 30
    pkg syscall (netbsd-386), const SYS_ACCESS = 33
    pkg syscall (netbsd-386), const SYS_ACCT = 51
    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 (netbsd-386), const SO_USELOOPBACK ideal-int
    pkg syscall (netbsd-386), const SYSCTL_VERSION ideal-int
    pkg syscall (netbsd-386), const SYSCTL_VERS_0 ideal-int
    pkg syscall (netbsd-386), const SYSCTL_VERS_1 ideal-int
    pkg syscall (netbsd-386), const SYSCTL_VERS_MASK ideal-int
    pkg syscall (netbsd-386), const SYS_ACCEPT ideal-int
    pkg syscall (netbsd-386), const SYS_ACCESS 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/cmd/cgo/gcc.go

    		f.Edit.Insert(f.offset(f.AST.Name.End()), "; import _cgo_unsafe \"unsafe\"")
    	}
    	p.rewriteRef(f)
    }
    
    // loadDefines coerces gcc into spitting out the #defines in use
    // in the file f and saves relevant renamings in f.Name[name].Define.
    func (p *Package) loadDefines(f *File) {
    	var b bytes.Buffer
    	b.WriteString(builtinProlog)
    	b.WriteString(f.Preamble)
    	stdout := p.gccDefines(b.Bytes())
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. src/bufio/bufio.go

    // to the default size.
    // Calling b.Reset(b) (that is, resetting a [Reader] to itself) does nothing.
    func (b *Reader) Reset(r io.Reader) {
    	// If a Reader r is passed to NewReader, NewReader will return r.
    	// Different layers of code may do that, and then later pass r
    	// to Reset. Avoid infinite recursion in that case.
    	if b == r {
    		return
    	}
    	if b.buf == nil {
    		b.buf = make([]byte, defaultBufSize)
    	}
    	b.reset(b.buf, r)
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
Back to top