Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for olleet (0.24 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const O_NDELAY ideal-int
    pkg syscall (netbsd-arm64-cgo), const ONLCR = 2
    pkg syscall (netbsd-arm64-cgo), const ONLCR ideal-int
    pkg syscall (netbsd-arm64-cgo), const ONLRET = 64
    pkg syscall (netbsd-arm64-cgo), const ONLRET ideal-int
    pkg syscall (netbsd-arm64-cgo), const ONOCR = 32
    pkg syscall (netbsd-arm64-cgo), const ONOCR ideal-int
    pkg syscall (netbsd-arm64-cgo), const O_NOCTTY = 32768
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const OFILL ideal-int
    pkg syscall (darwin-arm64), const ONLCR = 2
    pkg syscall (darwin-arm64), const ONLCR ideal-int
    pkg syscall (darwin-arm64), const ONLRET = 64
    pkg syscall (darwin-arm64), const ONLRET ideal-int
    pkg syscall (darwin-arm64), const ONOCR = 32
    pkg syscall (darwin-arm64), const ONOCR ideal-int
    pkg syscall (darwin-arm64), const ONOEOT = 8
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const OCRNL ideal-int
    pkg syscall (freebsd-arm64), const ONLCR = 2
    pkg syscall (freebsd-arm64), const ONLCR ideal-int
    pkg syscall (freebsd-arm64), const ONLRET = 64
    pkg syscall (freebsd-arm64), const ONLRET ideal-int
    pkg syscall (freebsd-arm64), const ONOCR = 32
    pkg syscall (freebsd-arm64), const ONOCR ideal-int
    pkg syscall (freebsd-arm64), const ONOEOT = 8
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (linux-386), const OFDEL ideal-int
    pkg syscall (linux-386), const OFILL ideal-int
    pkg syscall (linux-386), const OLCUC ideal-int
    pkg syscall (linux-386), const ONLCR ideal-int
    pkg syscall (linux-386), const ONLRET ideal-int
    pkg syscall (linux-386), const ONOCR ideal-int
    pkg syscall (linux-386), const OPOST ideal-int
    pkg syscall (linux-386), const O_ACCMODE ideal-int
    pkg syscall (linux-386), const O_DIRECT ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  5. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const ONLCR = 2 #53466
    pkg syscall (freebsd-riscv64), const ONLCR ideal-int #53466
    pkg syscall (freebsd-riscv64), const ONLRET = 64 #53466
    pkg syscall (freebsd-riscv64), const ONLRET ideal-int #53466
    pkg syscall (freebsd-riscv64), const ONOCR = 32 #53466
    pkg syscall (freebsd-riscv64), const ONOCR ideal-int #53466
    pkg syscall (freebsd-riscv64), const ONOEOT = 8 #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/1-time.md

    [time.Timer] and [time.Ticker].
    
    First, `Timer`s and `Ticker`s that are no longer referred to by the program
    become eligible for garbage collection immediately, even if their
    `Stop` methods have not been called.
    Earlier versions of Go did not collect unstopped `Timer`s until after
    they had fired and never collected unstopped `Ticker`s.
    
    Second, the timer channel associated with a `Timer` or `Ticker` is
    now unbuffered, with capacity 0.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/flags/flags.go

    	objabi.AddVersionFlag() // -V
    	objabi.Flagcount("S", "print assembly and machine code", &PrintOut)
    }
    
    // MultiFlag allows setting a value multiple times to collect a list, as in -I=dir1 -I=dir2.
    type MultiFlag []string
    
    func (m *MultiFlag) String() string {
    	if len(*m) == 0 {
    		return ""
    	}
    	return fmt.Sprint(*m)
    }
    
    func (m *MultiFlag) Set(val string) error {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 22 19:18:23 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/input.go

    // The opening parenthesis has been absorbed.
    func (in *Input) argsFor(macro *Macro) map[string][]Token {
    	var args [][]Token
    	// One macro argument per iteration. Collect them all and check counts afterwards.
    	for argNum := 0; ; argNum++ {
    		tokens, tok := in.collectArgument(macro)
    		args = append(args, tokens)
    		if tok == ')' {
    			break
    		}
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg syscall (darwin-386), const OFILL ideal-int
    pkg syscall (darwin-386), const ONLCR = 2
    pkg syscall (darwin-386), const ONLCR ideal-int
    pkg syscall (darwin-386), const ONLRET = 64
    pkg syscall (darwin-386), const ONLRET ideal-int
    pkg syscall (darwin-386), const ONOCR = 32
    pkg syscall (darwin-386), const ONOCR ideal-int
    pkg syscall (darwin-386), const ONOEOT = 8
    pkg syscall (darwin-386), const ONOEOT ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/asm.go

    )
    
    // TODO: configure the architecture
    
    var testOut *strings.Builder // Gathers output when testing.
    
    // append adds the Prog to the end of the program-thus-far.
    // If doLabel is set, it also defines the labels collect for this Prog.
    func (p *Parser) append(prog *obj.Prog, cond string, doLabel bool) {
    	if cond != "" {
    		switch p.arch.Family {
    		case sys.ARM:
    			if !arch.ARMConditionCodes(prog, cond) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
Back to top