Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for NetBSD (0.31 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    // Copyright 2009 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 || netbsd || openbsd
    
    // BSD system call wrappers shared by *BSD based systems
    // including OS X (Darwin) and FreeBSD.  Like the other
    // syscall_*.go files it is compiled as Go code but also
    // used as input to mksyscall which parses the //sys
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/net/listen_test.go

    		return fmt.Errorf("got %v; want a proper address with non-zero port number", la)
    	}
    	return nil
    }
    
    func multicastRIBContains(ip IP) (bool, error) {
    	switch runtime.GOOS {
    	case "aix", "dragonfly", "netbsd", "openbsd", "plan9", "solaris", "illumos", "windows":
    		return true, nil // not implemented yet
    	case "linux":
    		if runtime.GOARCH == "arm" || runtime.GOARCH == "alpha" {
    			return true, nil // not implemented yet
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcshared/cshared_test.go

    		cc = append(cc, "-pie")
    	}
    	libgodir := GOOS + "_" + GOARCH
    	switch GOOS {
    	case "darwin", "ios":
    		if GOARCH == "arm64" {
    			libgodir += "_shared"
    		}
    	case "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "solaris", "illumos":
    		libgodir += "_shared"
    	}
    	cc = append(cc, "-I", filepath.Join("pkg", libgodir))
    
    	// Force reallocation (and avoid aliasing bugs) for parallel tests that append to cc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_netbsd_arm64.go

    // mksysnum_netbsd.pl
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build arm64 && netbsd
    
    package syscall
    
    const (
    	SYS_EXIT                 = 1   // { void|sys||exit(int rval); }
    	SYS_FORK                 = 2   // { int|sys||fork(void); }
    	SYS_READ                 = 3   // { ssize_t|sys||read(int fd, void *buf, size_t nbyte); }
    	SYS_WRITE                = 4   // { ssize_t|sys||write(int fd, const void *buf, size_t nbyte); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_netbsd_386.go

    // mksysnum_netbsd.pl
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build 386 && netbsd
    
    package syscall
    
    const (
    	SYS_EXIT                 = 1   // { void|sys||exit(int rval); }
    	SYS_FORK                 = 2   // { int|sys||fork(void); }
    	SYS_READ                 = 3   // { ssize_t|sys||read(int fd, void *buf, size_t nbyte); }
    	SYS_WRITE                = 4   // { ssize_t|sys||write(int fd, const void *buf, size_t nbyte); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_netbsd_amd64.go

    // mksysnum_netbsd.pl
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build amd64 && netbsd
    
    package syscall
    
    const (
    	SYS_EXIT                 = 1   // { void|sys||exit(int rval); }
    	SYS_FORK                 = 2   // { int|sys||fork(void); }
    	SYS_READ                 = 3   // { ssize_t|sys||read(int fd, void *buf, size_t nbyte); }
    	SYS_WRITE                = 4   // { ssize_t|sys||write(int fd, const void *buf, size_t nbyte); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_netbsd_arm.go

    // mksysnum_netbsd.pl
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build arm && netbsd
    
    package syscall
    
    const (
    	SYS_EXIT                 = 1   // { void|sys||exit(int rval); }
    	SYS_FORK                 = 2   // { int|sys||fork(void); }
    	SYS_READ                 = 3   // { ssize_t|sys||read(int fd, void *buf, size_t nbyte); }
    	SYS_WRITE                = 4   // { ssize_t|sys||write(int fd, const void *buf, size_t nbyte); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  8. src/runtime/chan_test.go

    		time.Sleep(1 * time.Millisecond)
    		// trigger GC which will shrink the stack of the sender.
    		runtime.GC()
    	}
    	<-done
    }
    
    func TestNoShrinkStackWhileParking(t *testing.T) {
    	if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
    		testenv.SkipFlaky(t, 49382)
    	}
    	if runtime.GOOS == "openbsd" {
    		testenv.SkipFlaky(t, 51482)
    	}
    
    	// The goal of this test is to trigger a "racy sudog adjustment"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		libbase = "gccgo_" + libgodir + "_fPIC"
    	} else {
    		switch GOOS {
    		case "darwin", "ios":
    			if GOARCH == "arm64" {
    				libbase += "_shared"
    			}
    		case "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "solaris", "illumos":
    			libbase += "_shared"
    		}
    	}
    	libgodir = filepath.Join(GOPATH, "pkg", libbase, "testcarchive")
    	cc = append(cc, "-I", libgodir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    		GOINSECURE does not disable checksum database validation. GOPRIVATE or
    		GONOSUMDB may be used to achieve that.
    	GOOS
    		The operating system for which to compile code.
    		Examples are linux, darwin, windows, netbsd.
    	GOPATH
    		Controls where various files are stored. See: 'go help gopath'.
    	GOPROXY
    		URL of Go module proxy. See https://golang.org/ref/mod#environment-variables
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top