Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 74 of 74 for newEvent (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error) {
    	r0, _, e1 := syscall_syscall6(libc_kevent_trampoline_addr, uintptr(kq), uintptr(change), uintptr(nchange), uintptr(event), uintptr(nevent), uintptr(unsafe.Pointer(timeout)))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    		for i := len(list) - 1; i >= 0; i-- {
    			if par := &list[i]; par.typ != nil {
    				typ = par.typ
    				if par.name == nil {
    					errPos = typ.Pos()
    					n := ast.NewIdent("_")
    					n.NamePos = errPos // correct position
    					par.name = n
    				}
    			} else if typ != nil {
    				par.typ = typ
    			} else {
    				// par.typ == nil && typ == nil => we only have a par.name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"MapType.Key", Field, 0},
    		{"MapType.Map", Field, 0},
    		{"MapType.Value", Field, 0},
    		{"MergeMode", Type, 0},
    		{"MergePackageFiles", Func, 0},
    		{"NewCommentMap", Func, 1},
    		{"NewIdent", Func, 0},
    		{"NewObj", Func, 0},
    		{"NewPackage", Func, 0},
    		{"NewScope", Func, 0},
    		{"Node", Type, 0},
    		{"NotNilFilter", Func, 0},
    		{"ObjKind", Type, 0},
    		{"Object", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg go/ast, func Inspect(Node, func(Node) bool)
    pkg go/ast, func IsExported(string) bool
    pkg go/ast, func MergePackageFiles(*Package, MergeMode) *File
    pkg go/ast, func NewIdent(string) *Ident
    pkg go/ast, func NewObj(ObjKind, string) *Object
    pkg go/ast, func NewPackage(*token.FileSet, map[string]*File, Importer, *Scope) (*Package, error)
    pkg go/ast, func NewScope(*Scope) *Scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top