Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 73 of 73 for NetBSD (0.11 sec)

  1. 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)
  2. 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)
  3. 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