Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 295 for NetBSD (0.1 sec)

  1. api/go1.11.txt

    pkg runtime/trace, type Task struct
    pkg syscall (netbsd-386), func Accept4(int, int) (int, Sockaddr, error)
    pkg syscall (netbsd-386), func Pipe2([]int, int) error
    pkg syscall (netbsd-386-cgo), func Accept4(int, int) (int, Sockaddr, error)
    pkg syscall (netbsd-386-cgo), func Pipe2([]int, int) error
    pkg syscall (netbsd-amd64), func Accept4(int, int) (int, Sockaddr, error)
    pkg syscall (netbsd-amd64), func Pipe2([]int, int) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 22 03:48:56 UTC 2018
    - 25K bytes
    - Viewed (0)
  2. src/syscall/asm9_unix2_amd64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || freebsd || netbsd
    
    #include "textflag.h"
    #include "funcdata.h"
    
    //
    // Syscall9 support for AMD64, DragonFly, FreeBSD and NetBSD
    //
    
    // func Syscall9(trap int64, a1, a2, a3, a4, a5, a6, a7, a8, a9 int64) (r1, r2, err int64);
    TEXT	·Syscall9(SB),NOSPLIT,$32-104
    	NO_LOCAL_POINTERS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 16:59:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/race0.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build aix || (darwin && !race) || (linux && !race) || (freebsd && !race) || netbsd || openbsd || solaris || dragonfly || zos
    
    package unix
    
    import (
    	"unsafe"
    )
    
    const raceenabled = false
    
    func raceAcquire(addr unsafe.Pointer) {
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 553 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/route/interface_classic.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || netbsd
    
    package route
    
    import (
    	"runtime"
    	"syscall"
    )
    
    func (w *wireFormat) parseInterfaceMessage(_ RIBType, b []byte) (Message, error) {
    	if len(b) < w.bodyOff {
    		return nil, errMessageTooShort
    	}
    	l := int(nativeEndian.Uint16(b[:2]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/validation/vld_unix.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
    // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
    
    package validation
    
    import (
    	"errors"
    	"fmt"
    	"net"
    	"syscall"
    
    	"golang.org/x/sys/unix"
    
    	"istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/syslist.go

    	"android":   true,
    	"darwin":    true,
    	"dragonfly": true,
    	"freebsd":   true,
    	"hurd":      true,
    	"illumos":   true,
    	"ios":       true,
    	"js":        true,
    	"linux":     true,
    	"nacl":      true,
    	"netbsd":    true,
    	"openbsd":   true,
    	"plan9":     true,
    	"solaris":   true,
    	"wasip1":    true,
    	"windows":   true,
    	"zos":       true,
    }
    
    // unixOS is the set of GOOS values matched by the "unix" build tag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 01:45:58 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/runtime/auxv_none.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !solaris
    
    package runtime
    
    func sysargs(argc int32, argv **byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 298 bytes
    - Viewed (0)
  8. src/cmd/go/internal/toolchain/umask_none.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !(darwin || freebsd || linux || netbsd || openbsd)
    
    package toolchain
    
    import "io/fs"
    
    func sysWriteBits() fs.FileMode {
    	return 0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:44:08 UTC 2023
    - 307 bytes
    - Viewed (0)
  9. src/internal/poll/fd_writev_unix.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || freebsd || linux || netbsd || (openbsd && mips64)
    
    package poll
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func writev(fd int, iovecs []syscall.Iovec) (uintptr, error) {
    	var (
    		r uintptr
    		e syscall.Errno
    	)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 16:24:04 UTC 2022
    - 601 bytes
    - Viewed (0)
  10. src/runtime/race/internal/amd64v1/doc.go

    // license that can be found in the LICENSE file.
    
    // This package holds the race detector .syso for
    // amd64 architectures with GOAMD64<v3.
    
    //go:build amd64 && ((linux && !amd64.v3) || darwin || freebsd || netbsd || openbsd || windows)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 22 04:34:09 UTC 2022
    - 364 bytes
    - Viewed (0)
Back to top