Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NetBSD (0.12 sec)

  1. api/go1.3.txt

    pkg syscall (netbsd-386), const CLONE_PTRACE = 8192
    pkg syscall (netbsd-386), const CLONE_PTRACE ideal-int
    pkg syscall (netbsd-386), const CLONE_SIGHAND = 2048
    pkg syscall (netbsd-386), const CLONE_SIGHAND ideal-int
    pkg syscall (netbsd-386), const CLONE_VFORK = 16384
    pkg syscall (netbsd-386), const CLONE_VFORK ideal-int
    pkg syscall (netbsd-386), const CLONE_VM = 256
    pkg syscall (netbsd-386), const CLONE_VM ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			// cause Go code to run again).
    			//
    			// However, netbsd has a kernel bug that sometimes
    			// misses netpollBreak wake-ups, which can lead to
    			// unbounded delays servicing timers. If we detect this
    			// overrun, then startm to get something to handle the
    			// timer.
    			//
    			// See issue 42515 and
    			// https://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=50094.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// This is read by readGccgoArchive in cmd/internal/buildid/buildid.go.
    	if a.buildID != "" && cfg.BuildToolchainName == "gccgo" {
    		switch cfg.Goos {
    		case "aix", "android", "dragonfly", "freebsd", "illumos", "linux", "netbsd", "openbsd", "solaris":
    			asmfile, err := b.gccgoBuildIDFile(a)
    			if err != nil {
    				return err
    			}
    			ofiles, err := BuildToolchain.asm(b, a, []string{asmfile})
    			if err != nil {
    				return err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    			for req := range reqs {
    				res, err := c.Get(ts.URL + "/?echo=" + req)
    				if err != nil {
    					if runtime.GOOS == "netbsd" && strings.HasSuffix(err.Error(), ": connection reset by peer") {
    						// https://go.dev/issue/52168: this test was observed to fail with
    						// ECONNRESET errors in Dial on various netbsd builders.
    						t.Logf("error on req %s: %v", req, err)
    						t.Logf("(see https://go.dev/issue/52168)")
    					} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    type OSABI byte
    
    const (
    	ELFOSABI_NONE       OSABI = 0   /* UNIX System V ABI */
    	ELFOSABI_HPUX       OSABI = 1   /* HP-UX operating system */
    	ELFOSABI_NETBSD     OSABI = 2   /* NetBSD */
    	ELFOSABI_LINUX      OSABI = 3   /* Linux */
    	ELFOSABI_HURD       OSABI = 4   /* Hurd */
    	ELFOSABI_86OPEN     OSABI = 5   /* 86Open common IA32 ABI */
    	ELFOSABI_SOLARIS    OSABI = 6   /* Solaris */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.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
    - 142.4K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    func TestServerDuplicateBackgroundRead(t *testing.T) {
    	run(t, testServerDuplicateBackgroundRead, []testMode{http1Mode})
    }
    func testServerDuplicateBackgroundRead(t *testing.T, mode testMode) {
    	if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm" {
    		testenv.SkipFlaky(t, 24826)
    	}
    
    	goroutines := 5
    	requests := 2000
    	if testing.Short() {
    		goroutines = 3
    		requests = 100
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top