Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for illumos (0.27 sec)

  1. src/net/http/cgi/host.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/runtime/extern.go

    	instead of MADV_DONTNEED on Linux when returning memory to the
    	kernel. This is more efficient, but means RSS numbers will
    	drop only when the OS is under memory pressure. On the BSDs and
    	Illumos/Solaris, setting madvdontneed=1 will use MADV_DONTNEED instead
    	of MADV_FREE. This is less efficient, but causes RSS numbers to drop
    	more quickly.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/runtime/netpoll.go

    func poll_runtime_pollWait(pd *pollDesc, mode int) int {
    	errcode := netpollcheckerr(pd, int32(mode))
    	if errcode != pollNoError {
    		return errcode
    	}
    	// As for now only Solaris, illumos, AIX and wasip1 use level-triggered IO.
    	if GOOS == "solaris" || GOOS == "illumos" || GOOS == "aix" || GOOS == "wasip1" {
    		netpollarm(pd, mode)
    	}
    	for !netpollblock(pd, int32(mode), false) {
    		errcode = netpollcheckerr(pd, int32(mode))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. src/runtime/runtime-gdb_test.go

    	}
    	t.Logf("gdb version %d.%d", major, minor)
    }
    
    func checkGdbPython(t *testing.T) {
    	if runtime.GOOS == "solaris" || runtime.GOOS == "illumos" {
    		t.Skip("skipping gdb python tests on illumos and solaris; see golang.org/issue/20821")
    	}
    	args := []string{"-nx", "-q", "--batch", "-iex", "python import sys; print('go gdb python support')"}
    	gdbArgsFixup(args)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    	// The following platforms could potentially be supported in the future:
    	runtime.GOOS == "openbsd" || // #60614
    	runtime.GOOS == "solaris" || // #60968 #60970
    	runtime.GOOS == "android" || // #60967
    	runtime.GOOS == "illumos" || // #65544
    	// These platforms fundamentally can't be supported:
    	runtime.GOOS == "js" || // #60971
    	runtime.GOOS == "wasip1" || // #60971
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/internal/work/buildid.go

    	sfile := a.Objdir + "_buildid.s"
    
    	var buf bytes.Buffer
    	if cfg.Goos == "aix" {
    		fmt.Fprintf(&buf, "\t.csect .go.buildid[XO]\n")
    	} else if (cfg.Goos != "solaris" && cfg.Goos != "illumos") || assemblerIsGas() {
    		fmt.Fprintf(&buf, "\t"+`.section .go.buildid,"e"`+"\n")
    	} else if cfg.Goarch == "sparc" || cfg.Goarch == "sparc64" {
    		fmt.Fprintf(&buf, "\t"+`.section ".go.buildid",#exclude`+"\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/net/conf.go

    	// sources for "hosts", assume Go's DNS will work fine.
    	if errors.Is(nss.err, fs.ErrNotExist) || (nss.err == nil && len(srcs) == 0) {
    		if canUseCgo && c.goos == "solaris" {
    			// illumos defaults to
    			// "nis [NOTFOUND=return] files",
    			// which the go resolver doesn't support.
    			return hostLookupCgo, dnsConf
    		}
    
    		return hostLookupFilesDNS, dnsConf
    	}
    	if nss.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    those terms (in addition to any explicit constraints in the file).
    
    Using GOOS=android matches build tags and files as for GOOS=linux
    in addition to android tags and files.
    
    Using GOOS=illumos matches build tags and files as for GOOS=solaris
    in addition to illumos tags and files.
    
    Using GOOS=ios matches build tags and files as for GOOS=darwin
    in addition to ios tags and files.
    
    The defined architecture feature build tags are:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/runtime/crash_cgo_test.go

    					testenv.SkipFlaky(t, 39457)
    				}
    				t.Errorf("did not see %q in output", want)
    			}
    
    			// No runtime errors like "runtime: unknown pc".
    			switch runtime.GOOS {
    			case "darwin", "ios", "illumos", "solaris":
    				// Runtime sometimes throws when generating the traceback.
    				testenv.SkipFlaky(t, 49182)
    			case "linux":
    				if runtime.GOARCH == "386" {
    					// Runtime throws when generating a traceback from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (1)
Back to top