Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,226 for bufLen (0.18 sec)

  1. cmd/dummy-data-generator_test.go

    // errors cause a `false` result. A string describing the error is
    // also returned.
    func cmpReaders(r1, r2 io.Reader) (bool, string) {
    	bufLen := 32 * 1024
    	b1, b2 := make([]byte, bufLen), make([]byte, bufLen)
    	for i := 0; true; i++ {
    		n1, e1 := io.ReadFull(r1, b1)
    		n2, e2 := io.ReadFull(r2, b2)
    		if n1 != n2 {
    			return false, fmt.Sprintf("Read %d != %d bytes from the readers", n1, n2)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CryptGenRandom(provhandle Handle, buflen uint32, buf *byte) (err error) {
    	r1, _, e1 := Syscall(procCryptGenRandom.Addr(), 3, uintptr(provhandle), uintptr(buflen), uintptr(unsafe.Pointer(buf)))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  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/runtime/pprof/vminfo_darwin.go

    // the runtime package (runtime/sys_darwin.go).
    //
    //go:noescape
    func mach_vm_region(address, region_size *uint64, info unsafe.Pointer) int32
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 23:35:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    	return &c
    }
    
    // copyIntoBuf copies b into buf. It will panic if there is not enough space to
    // store all of b.
    func (s *asmState) copyIntoBuf(b []byte) {
    	bufLen := len(s.buf)
    	s.buf = s.buf[:len(s.buf)+len(b)]
    	copy(s.buf[bufLen:], b)
    }
    
    // resetBuf points buf at storage, sets the length to 0 and sets cap to be a
    // multiple of the rate.
    func (s *asmState) resetBuf() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/syscall/syscall_windows.go

    //sys	FlushFileBuffers(handle Handle) (err error)
    //sys	GetFullPathName(path *uint16, buflen uint32, buf *uint16, fname **uint16) (n uint32, err error) = kernel32.GetFullPathNameW
    //sys	GetLongPathName(path *uint16, buf *uint16, buflen uint32) (n uint32, err error) = kernel32.GetLongPathNameW
    //sys	GetShortPathName(longpath *uint16, shortpath *uint16, buflen uint32) (n uint32, err error) = kernel32.GetShortPathNameW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func VirtualQuery(address uintptr, buffer *MemoryBasicInformation, length uintptr) (err error) {
    	r1, _, e1 := syscall.Syscall(procVirtualQuery.Addr(), 3, uintptr(address), uintptr(unsafe.Pointer(buffer)), uintptr(length))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func VirtualQueryEx(process Handle, address uintptr, buffer *MemoryBasicInformation, length uintptr) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top