Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for illumos (0.14 sec)

  1. src/cmd/go/internal/imports/build.go

    		return prefer
    	}
    
    	if tags[name] {
    		return true
    	}
    
    	switch name {
    	case "linux":
    		return tags["android"]
    	case "solaris":
    		return tags["illumos"]
    	case "darwin":
    		return tags["ios"]
    	case "unix":
    		return unixOS[cfg.BuildContext.GOOS]
    	default:
    		return false
    	}
    }
    
    // eval is like
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/build.go

    }
    
    // matchTag reports whether the name is one of:
    //
    //	cgo (if cgo is enabled)
    //	$GOOS
    //	$GOARCH
    //	boringcrypto
    //	ctxt.Compiler
    //	linux (if GOOS == android)
    //	solaris (if GOOS == illumos)
    //	tag (if tag is listed in ctxt.BuildTags or ctxt.ReleaseTags)
    //
    // It records all consulted tags in allTags.
    func (ctxt *Context) matchTag(name string, allTags map[string]bool) bool {
    	if allTags != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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/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)
  8. 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)
  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