Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 409 for FreeBSD (0.11 sec)

  1. src/net/sock_cloexec.go

    // license that can be found in the LICENSE file.
    
    // This file implements sysSocket for platforms that provide a fast path for
    // setting SetNonblock and CloseOnExec.
    
    //go:build dragonfly || freebsd || linux || netbsd || openbsd
    
    package net
    
    import (
    	"os"
    	"syscall"
    )
    
    // Wrapper around the socket system call that marks the returned file
    // descriptor as nonblocking and close-on-exec.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 730 bytes
    - Viewed (0)
  2. src/syscall/mkpost.go

    		// Force the type of RawSockaddr.Data to [14]int8 to match
    		// the existing gccgo API.
    		re = regexp.MustCompile("(Data\\s+\\[14\\])uint8")
    		s = re.ReplaceAllString(s, "${1}int8")
    
    	case goos == "freebsd":
    		// Keep pre-FreeBSD 10 / non-POSIX 2008 names for timespec fields
    		re := regexp.MustCompile("(A|M|C|Birth)tim\\s+Timespec")
    		s = re.ReplaceAllString(s, "${1}timespec Timespec")
    	}
    
    	// gofmt
    	b, err = format.Source([]byte(s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/syscall/badlinkname_unix.go

    // Copyright 2024 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
    
    package syscall
    
    import _ "unsafe"
    
    // As of Go 1.22, the symbols below are found to be pulled via
    // linkname in the wild. We provide a push linkname here, to
    // keep them accessible with pull linknames.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 679 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/route/interface_announce.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 dragonfly || freebsd || netbsd
    
    package route
    
    func (w *wireFormat) parseInterfaceAnnounceMessage(_ RIBType, b []byte) (Message, error) {
    	if len(b) < w.bodyOff {
    		return nil, errMessageTooShort
    	}
    	l := int(nativeEndian.Uint16(b[:2]))
    	if len(b) < l {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 770 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    // Copyright 2022 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 || (freebsd && amd64)
    
    package sanitizers_test
    
    import (
    	"internal/testenv"
    	"strings"
    	"testing"
    )
    
    func TestLibFuzzer(t *testing.T) {
    	// Skip tests in short mode.
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/route/interface_multicast.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 || freebsd
    
    package route
    
    func (w *wireFormat) parseInterfaceMulticastAddrMessage(_ RIBType, b []byte) (Message, error) {
    	if len(b) < w.bodyOff {
    		return nil, errMessageTooShort
    	}
    	l := int(nativeEndian.Uint16(b[:2]))
    	if len(b) < l {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 829 bytes
    - Viewed (0)
  7. src/runtime/os_freebsd_noauxv.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 freebsd && !arm
    
    package runtime
    
    func archauxv(tag, val uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 241 bytes
    - Viewed (0)
  8. 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)
  9. src/internal/sysinfo/cpuinfo_stub.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 sysinfo
    
    func osCPUInfoName() string {
    	return ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 283 bytes
    - Viewed (0)
  10. 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)
Back to top