Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for NetBSD (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/os/exec/exec_test.go

    	}
    	go cancel()
    
    	if err := c.Wait(); err == nil {
    		t.Fatal("expected Wait failure")
    	}
    }
    
    func TestContextCancel(t *testing.T) {
    	if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
    		maySkipHelperCommand("cat")
    		testenv.SkipFlaky(t, 42061)
    	}
    
    	// To reduce noise in the final goroutine dump,
    	// let other parallel tests complete if possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top