github.com/Rookout/GoSDK@v0.1.48/pkg/services/assembler/internal/bio/buf_nommap.go (about) 1 // Copyright 2019 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE.assembler file. 4 5 //go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !(solaris && go1.20) 6 // +build !aix 7 // +build !darwin 8 // +build !dragonfly 9 // +build !freebsd 10 // +build !linux 11 // +build !netbsd 12 // +build !openbsd 13 // +build !solaris !go1.20 14 15 package bio 16 17 func (r *Reader) sliceOS(length uint64) ([]byte, bool) { 18 return nil, false 19 }