Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for countAttrs (0.08 sec)

  1. src/log/slog/record.go

    			r.front[r.nFront] = a
    			r.nFront++
    		} else {
    			if r.back == nil {
    				r.back = make([]Attr, 0, countAttrs(args)+1)
    			}
    			r.back = append(r.back, a)
    		}
    	}
    }
    
    // countAttrs returns the number of Attrs that would be created from args.
    func countAttrs(args []any) int {
    	n := 0
    	for i := 0; i < len(args); i++ {
    		n++
    		if _, ok := args[i].(string); ok {
    			i++
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:30:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Fsmount(fd int, flags int, mountAttrs int) (fsfd int, err error) {
    	r0, _, e1 := Syscall(SYS_FSMOUNT, uintptr(fd), uintptr(flags), uintptr(mountAttrs))
    	fsfd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	Fremovexattr(fd int, attr string) (err error)
    //sys	Fsetxattr(fd int, attr string, dest []byte, flags int) (err error)
    //sys	Fsync(fd int) (err error)
    //sys	Fsmount(fd int, flags int, mountAttrs int) (fsfd int, err error)
    //sys	Fsopen(fsName string, flags int) (fd int, err error)
    //sys	Fspick(dirfd int, pathName string, flags int) (fd int, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top