Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for NetBSD (0.1 sec)

  1. src/os/removeall_test.go

    		t.Fatalf("Lstat %q succeeded after RemoveAll", path)
    	}
    }
    
    func TestRemoveAllLongPath(t *testing.T) {
    	switch runtime.GOOS {
    	case "aix", "darwin", "ios", "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "illumos", "solaris":
    		break
    	default:
    		t.Skip("skipping for not implemented platforms")
    	}
    
    	prevDir, err := Getwd()
    	if err != nil {
    		t.Fatalf("Could not get wd: %s", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go

    // go run mksyscall.go -l32 -netbsd -arm -tags netbsd,arm syscall_bsd.go syscall_netbsd.go syscall_netbsd_arm.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build netbsd && arm
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 44.1K bytes
    - Viewed (0)
  3. src/net/timeout_test.go

    // timeoutUpperBound returns the maximum time that we expect a timeout of
    // duration d to take to return the caller.
    func timeoutUpperBound(d time.Duration) time.Duration {
    	switch runtime.GOOS {
    	case "openbsd", "netbsd":
    		// NetBSD and OpenBSD seem to be unable to reliably hit deadlines even when
    		// the absolute durations are long.
    		// In https://build.golang.org/log/c34f8685d020b98377dd4988cd38f0c5bd72267e,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go

    // go run mksyscall.go -l32 -netbsd -tags netbsd,386 syscall_bsd.go syscall_netbsd.go syscall_netbsd_386.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build netbsd && 386
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 44.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go

    // go run mksyscall.go -netbsd -tags netbsd,arm64 syscall_bsd.go syscall_netbsd.go syscall_netbsd_arm64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build netbsd && arm64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go

    // go run mksyscall.go -netbsd -tags netbsd,amd64 syscall_bsd.go syscall_netbsd.go syscall_netbsd_amd64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build netbsd && amd64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  7. src/runtime/pprof/proto_test.go

    // testPCs returns two PCs and two corresponding memory mappings
    // to use in test profiles.
    func testPCs(t *testing.T) (addr1, addr2 uint64, map1, map2 *profile.Mapping) {
    	switch runtime.GOOS {
    	case "linux", "android", "netbsd":
    		// Figure out two addresses from /proc/self/maps.
    		mmap, err := os.ReadFile("/proc/self/maps")
    		if err != nil {
    			t.Fatal(err)
    		}
    		var mappings []*profile.Mapping
    		id := uint64(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. misc/go_android_exec/main.go

    // so for now it only builds on platforms that support that system call.
    // TODO(#33974): use a more portable library for file locking.
    
    //go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd
    
    // This program can be used as go_android_GOARCH_exec by the Go tool.
    // It executes binaries on an android device using adb.
    package main
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. src/syscall/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: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
    
    package unix
    
    import (
    	"bytes"
    	"sort"
    	"sync"
    	"syscall"
    	"unsafe"
    )
    
    var (
    	Stdin  = 0
    	Stdout = 1
    	Stderr = 2
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top