Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for props (0.19 sec)

  1. src/cmd/asm/internal/asm/parse.go

    	errorLine     int   // Line number of last error.
    	errorCount    int   // Number of errors.
    	sawCode       bool  // saw code in this file (as opposed to comments and blank lines)
    	pc            int64 // virtual PC; count of Progs; doesn't advance for GLOBL or DATA.
    	input         []lex.Token
    	inputPos      int
    	pendingLabels []string // Labels to attach to next instruction.
    	labels        map[string]*obj.Prog
    	toPatch       []Patch
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  2. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Loads [3]uint32
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Pad uint16
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Procs uint16
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Sharedram uint32
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalhigh uint32
    pkg syscall (linux-arm-cgo), type Sysinfo_t struct, Totalram uint32
    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)
  3. src/bufio/scan.go

    	// but advance only one byte. This matches the behavior of a range loop over
    	// an incorrectly encoded string.
    	return 1, errorRune, nil
    }
    
    // dropCR drops a terminal \r from the data.
    func dropCR(data []byte) []byte {
    	if len(data) > 0 && data[len(data)-1] == '\r' {
    		return data[0 : len(data)-1]
    	}
    	return data
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg debug/elf, type Dyn64 struct, Tag int64
    pkg debug/elf, type Dyn64 struct, Val uint64
    pkg debug/elf, type DynFlag int
    pkg debug/elf, type DynTag int
    pkg debug/elf, type File struct
    pkg debug/elf, type File struct, Progs []*Prog
    pkg debug/elf, type File struct, Sections []*Section
    pkg debug/elf, type File struct, embedded FileHeader
    pkg debug/elf, type FileHeader struct
    pkg debug/elf, type FileHeader struct, ABIVersion uint8
    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)
  5. src/cmd/api/main_test.go

    	w.imported[name] = pkg
    	return pkg, nil
    }
    
    // pushScope enters a new scope (walking a package, type, node, etc)
    // and returns a function that will leave the scope (with sanity checking
    // for mismatched pushes & pops)
    func (w *Walker) pushScope(name string) (popFunc func()) {
    	w.scope = append(w.scope, name)
    	return func() {
    		if len(w.scope) == 0 {
    			log.Fatalf("attempt to leave scope %q with empty scope list", name)
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top