Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 765 for bufLen (0.14 sec)

  1. src/io/io_test.go

    		data   string
    		off    int
    		n      int
    		bufLen int
    		at     int
    		exp    string
    		err    error
    	}{
    		{data: "", off: 0, n: 10, bufLen: 2, at: 0, exp: "", err: EOF},
    		{data: dat, off: 0, n: len(dat), bufLen: 0, at: 0, exp: "", err: nil},
    		{data: dat, off: len(dat), n: 1, bufLen: 1, at: 0, exp: "", err: EOF},
    		{data: dat, off: 0, n: len(dat) + 2, bufLen: len(dat), at: 0, exp: dat, err: nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/value.go

    		err = regLoadMUIString(syscall.Handle(k), pname, &buf[0], uint32(len(buf)), &buflen, 0, pdir)
    	}
    
    	for err == syscall.ERROR_MORE_DATA { // Grow buffer if needed
    		if buflen <= uint32(len(buf)) {
    			break // Buffer not growing, assume race; break
    		}
    		buf = make([]uint16, buflen)
    		err = regLoadMUIString(syscall.Handle(k), pname, &buf[0], uint32(len(buf)), &buflen, 0, pdir)
    	}
    
    	if err != nil {
    		return "", err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/zsyscall_windows.go

    	var _p0 uint32
    	if disableAllPrivileges {
    		_p0 = 1
    	}
    	r0, _, e1 := syscall.Syscall6(procAdjustTokenPrivileges.Addr(), 6, uintptr(token), uintptr(_p0), uintptr(unsafe.Pointer(newstate)), uintptr(buflen), uintptr(unsafe.Pointer(prevstate)), uintptr(unsafe.Pointer(returnlen)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/syscall/fs_wasip1.go

    		unsafe.Pointer(&buf[0]),
    		size(len(buf)),
    		unsafe.Pointer(&nwritten),
    	)
    	// For some reason wasmtime returns ERANGE when the output buffer is
    	// shorter than the symbolic link value. os.Readlink expects a nil
    	// error and uses the fact that n is greater or equal to the buffer
    	// length to assume that it needs to try again with a larger size.
    	// This condition is handled in os.Readlink.
    	return int(nwritten), errnoErr(errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. src/os/os_windows_test.go

    	if err != nil {
    		return err
    	}
    	defer syscall.CloseHandle(fd)
    
    	buflen := uint32(rdb.header.ReparseDataLength) + uint32(unsafe.Sizeof(rdb.header))
    	var bytesReturned uint32
    	return syscall.DeviceIoControl(fd, windows.FSCTL_SET_REPARSE_POINT,
    		(*byte)(unsafe.Pointer(&rdb.header)), buflen, nil, 0, &bytesReturned, nil)
    }
    
    func createMountPoint(link string, target *reparseData) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder_test.go

    stuff: 1
    	test-foo: 1
    `
    	testCases := []struct {
    		bufLen    int
    		expectLen int
    		expectErr error
    	}{
    		{len(d), len(d), nil},
    		{len(d) + 10, len(d), nil},
    		{len(d) - 10, len(d) - 10, io.ErrShortBuffer},
    	}
    
    	for i, testCase := range testCases {
    		r := NewDocumentDecoder(io.NopCloser(bytes.NewReader([]byte(d))))
    		b := make([]byte, testCase.bufLen)
    		n, err := r.Read(b)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_MLOCKALL               = 324 // { int mlockall(int how); }
    	SYS_MUNLOCKALL             = 325 // { int munlockall(void); }
    	SYS___GETCWD               = 326 // { int __getcwd(u_char *buf, u_int buflen); }
    	SYS_SCHED_SETPARAM         = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }
    	SYS_SCHED_GETPARAM         = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  8. src/runtime/sys_darwin.go

    //go:linkname proc_regionfilename runtime/pprof.proc_regionfilename
    func proc_regionfilename(pid int, address uint64, buf *byte, buflen int64) int32 {
    	args := struct {
    		pid     int
    		address uint64
    		buf     *byte
    		bufSize int64
    	}{
    		pid:     pid,
    		address: address,
    		buf:     buf,
    		bufSize: buflen,
    	}
    	return libcCall(unsafe.Pointer(abi.FuncPCABI0(proc_regionfilename_trampoline)), unsafe.Pointer(&args))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_MLOCKALL               = 324 // { int mlockall(int how); }
    	SYS_MUNLOCKALL             = 325 // { int munlockall(void); }
    	SYS___GETCWD               = 326 // { int __getcwd(u_char *buf, u_int buflen); }
    	SYS_SCHED_SETPARAM         = 327 // { int sched_setparam (pid_t pid, const struct sched_param *param); }
    	SYS_SCHED_GETPARAM         = 328 // { int sched_getparam (pid_t pid, struct sched_param *param); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/syscall_windows.go

    //sys	VirtualQuery(address uintptr, buffer *MemoryBasicInformation, length uintptr) (err error) = kernel32.VirtualQuery
    //sys	GetTempPath2(buflen uint32, buf *uint16) (n uint32, err error) = GetTempPath2W
    
    const (
    	// flags for CreateToolhelp32Snapshot
    	TH32CS_SNAPMODULE   = 0x08
    	TH32CS_SNAPMODULE32 = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top