Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for illumos (0.12 sec)

  1. src/cmd/dist/build.go

    	"mipsle",
    	"mips64",
    	"mips64le",
    	"ppc64",
    	"ppc64le",
    	"riscv64",
    	"s390x",
    	"sparc64",
    	"wasm",
    }
    
    // The known operating systems.
    var okgoos = []string{
    	"darwin",
    	"dragonfly",
    	"illumos",
    	"ios",
    	"js",
    	"wasip1",
    	"linux",
    	"android",
    	"solaris",
    	"freebsd",
    	"nacl", // keep;
    	"netbsd",
    	"openbsd",
    	"plan9",
    	"windows",
    	"aix",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K 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/crash_unix_test.go

    	}
    }
    
    func TestCrashDumpsAllThreads(t *testing.T) {
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    
    	switch runtime.GOOS {
    	case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "illumos", "solaris":
    	default:
    		t.Skipf("skipping; not supported on %v", runtime.GOOS)
    	}
    
    	if runtime.GOOS == "openbsd" && (runtime.GOARCH == "arm" || runtime.GOARCH == "mips64" || runtime.GOARCH == "ppc64") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. src/debug/gosym/pclntab_test.go

    // These tests open and examine the test binary, and use elf.Open to do so.
    func skipIfNotELF(t *testing.T) {
    	switch runtime.GOOS {
    	case "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "solaris", "illumos":
    		// OK.
    	default:
    		t.Skipf("skipping on non-ELF system %s", runtime.GOOS)
    	}
    }
    
    func getTable(t *testing.T) *Table {
    	f, tab := crack(os.Args[0], t)
    	f.Close()
    	return tab
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 17:17:44 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/go/internal/work/init.go

    			codegenArg = "-fPIC"
    		} else {
    			switch cfg.Goos {
    			case "darwin", "ios":
    				switch cfg.Goarch {
    				case "arm64":
    					codegenArg = "-shared"
    				}
    
    			case "dragonfly", "freebsd", "illumos", "linux", "netbsd", "openbsd", "solaris":
    				// Use -shared so that the result is
    				// suitable for inclusion in a PIE or
    				// shared library.
    				codegenArg = "-shared"
    			}
    		}
    		cfg.ExeSuffix = ".a"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top