Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for illumos (0.28 sec)

  1. src/runtime/crash_test.go

    		}
    	}
    }
    
    func TestTimePprof(t *testing.T) {
    	// This test is unreliable on any system in which nanotime
    	// calls into libc.
    	switch runtime.GOOS {
    	case "aix", "darwin", "illumos", "openbsd", "solaris":
    		t.Skipf("skipping on %s because nanotime calls libc", runtime.GOOS)
    	}
    
    	// Pass GOTRACEBACK for issue #41120 to try to get more
    	// information on timeout.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	switch GOOS {
    	case "aix", "darwin", "illumos", "ios", "solaris", "windows":
    		return true
    	case "openbsd":
    		return GOARCH != "mips64"
    	}
    	return false
    }
    
    // mStackIsSystemAllocated indicates whether this runtime starts on a
    // system-allocated stack.
    func mStackIsSystemAllocated() bool {
    	switch GOOS {
    	case "aix", "darwin", "plan9", "illumos", "ios", "solaris", "windows":
    		return true
    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/cgo/internal/testcarchive/carchive_test.go

    	} 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    // Event Ports
    
    type fileObjCookie struct {
    	fobj   *fileObj
    	cookie interface{}
    }
    
    // EventPort provides a safe abstraction on top of Solaris/illumos Event Ports.
    type EventPort struct {
    	port  int
    	mu    sync.Mutex
    	fds   map[uintptr]*fileObjCookie
    	paths map[string]*fileObjCookie
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  5. src/os/os_test.go

    	wg.Wait()
    }
    
    // Test that reading from a pipe doesn't use up a thread.
    func TestPipeThreads(t *testing.T) {
    	switch runtime.GOOS {
    	case "illumos", "solaris":
    		t.Skip("skipping on Solaris and illumos; issue 19111")
    	case "windows":
    		t.Skip("skipping on Windows; issue 19098")
    	case "plan9":
    		t.Skip("skipping on Plan 9; does not support runtime poller")
    	case "js":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    #endif
    needtls:
    #ifdef GOOS_plan9
    	// skip TLS setup on Plan 9
    	JMP ok
    #endif
    #ifdef GOOS_solaris
    	// skip TLS setup on Solaris
    	JMP ok
    #endif
    #ifdef GOOS_illumos
    	// skip TLS setup on illumos
    	JMP ok
    #endif
    #ifdef GOOS_darwin
    	// skip TLS setup on Darwin
    	JMP ok
    #endif
    #ifdef GOOS_openbsd
    	// skip TLS setup on OpenBSD
    	JMP ok
    #endif
    
    #ifdef GOOS_windows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    	switch runtime.GOOS {
    	case "plan9":
    		// Profiling unimplemented.
    		return true
    	case "aix":
    		// See https://golang.org/issue/45170.
    		return true
    	case "ios", "dragonfly", "netbsd", "illumos", "solaris":
    		// See https://golang.org/issue/13841.
    		return true
    	case "openbsd":
    		if runtime.GOARCH == "arm" || runtime.GOARCH == "arm64" {
    			// See https://golang.org/issue/13841.
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // 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.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    // when executed in a deleted directory on Linux.
    func TestExecInDeletedDir(t *testing.T) {
    	switch runtime.GOOS {
    	case "windows", "plan9",
    		"aix",                // Fails with "device busy".
    		"solaris", "illumos": // Fails with "invalid argument".
    		t.Skipf("%v does not support removing the current working directory", runtime.GOOS)
    	}
    	tg := testgo(t)
    	defer tg.cleanup()
    
    	wd, err := os.Getwd()
    	tg.check(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. 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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top