Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 659 for goose (0.05 sec)

  1. src/internal/goos/zgoos_solaris.go

    // Code generated by gengoos.go using 'go generate'. DO NOT EDIT.
    
    //go:build !illumos && solaris
    
    package goos
    
    const GOOS = `solaris`
    
    const IsAix = 0
    const IsAndroid = 0
    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 0
    const IsSolaris = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 469 bytes
    - Viewed (0)
  2. src/cmd/dist/buildruntime.go

    //
    //	const defaultGOROOT = <goroot>
    //	const defaultGO386 = <go386>
    //	...
    //	const defaultGOOS = runtime.GOOS
    //	const defaultGOARCH = runtime.GOARCH
    //
    // The use of runtime.GOOS and runtime.GOARCH makes sure that
    // a cross-compiled compiler expects to compile for its own target
    // system. That is, if on a Mac you do:
    //
    //	GOOS=linux GOARCH=ppc64 go build cmd/compile
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/dist/supported_test.go

    	defer func(a, o string) {
    		goarch = a
    		goos = o
    	}(goarch, goos)
    
    	var modes = []string{
    		// we assume that "exe" and "archive" always work
    		"pie",
    		"c-archive",
    		"c-shared",
    		"shared",
    		"plugin",
    	}
    
    	for _, a := range okgoarch {
    		goarch = a
    		for _, o := range okgoos {
    			if _, ok := cgoEnabled[o+"/"+a]; !ok {
    				continue
    			}
    			goos = o
    			for _, mode := range modes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/internal/coverage/decodecounter/decodecounterfile.go

    	return cdr.osargs
    }
    
    // Goos returns the GOOS setting in effect for the "-cover" binary
    // that produced this counter data file. The GOOS value may be
    // empty in the case where the counter data file was produced
    // from a merge in which more than one GOOS value was present.
    func (cdr *CounterDataReader) Goos() string {
    	return cdr.goos
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. src/syscall/mkpost.go

    	"regexp"
    	"strings"
    )
    
    func main() {
    	b, err := io.ReadAll(os.Stdin)
    	if err != nil {
    		log.Fatal(err)
    	}
    	s := string(b)
    
    	goarch := os.Getenv("GOARCH")
    	goos := os.Getenv("GOOS")
    	switch {
    	case goarch == "s390x" && goos == "linux":
    		// Export the types of PtraceRegs fields.
    		re := regexp.MustCompile("ptrace(Psw|Fpregs|Per)")
    		s = re.ReplaceAllString(s, "Ptrace$1")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/net/listen_test.go

    // TestTCPListener tests both single and double listen to a test
    // listener with same address family, same listening address and
    // same port.
    func TestTCPListener(t *testing.T) {
    	switch runtime.GOOS {
    	case "plan9":
    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    
    	for _, tt := range tcpListenerTests {
    		if !testableListenArgs(tt.network, JoinHostPort(tt.address, "0"), "") {
    			t.Logf("skipping %s test", tt.network+" "+tt.address)
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. src/runtime/tagptr_64bit.go

    const taggedPointerBits = (goos.IsAix * aixTagBits) + (goarch.IsRiscv64 * riscv64TagBits) + ((1 - goos.IsAix) * (1 - goarch.IsRiscv64) * tagBits)
    
    // taggedPointerPack created a taggedPointer from a pointer and a tag.
    // Tag bits that don't fit in the result are discarded.
    func taggedPointerPack(ptr unsafe.Pointer, tag uintptr) taggedPointer {
    	if GOOS == "aix" {
    		if GOARCH != "ppc64" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. misc/ios/README

    set to the clang wrapper that invokes clang for iOS. For example, this command runs
     all.bash on the iOS emulator:
    
    	GOOS=ios GOARCH=amd64 CGO_ENABLED=1 CC_FOR_TARGET=$(pwd)/../misc/ios/clangwrap.sh ./all.bash
    
    If CC_FOR_TARGET is not set when the toolchain is built (make.bash or all.bash), CC
    can be set on the command line. For example,
    
    	GOOS=ios GOARCH=amd64 CGO_ENABLED=1 CC=$(go env GOROOT)/misc/ios/clangwrap.sh go build
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 21:49:26 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  9. src/internal/platform/zosarch_test.go

    package platform
    
    // List is the list of all valid GOOS/GOARCH combinations,
    // including known-broken ports.
    var List = []OSArch{
    {{range .}}	{ {{ printf "%q" .GOOS }}, {{ printf "%q" .GOARCH }} },
    {{end}}
    }
    
    var distInfo = map[OSArch]osArchInfo {
    {{range .}}	{ {{ printf "%q" .GOOS }}, {{ printf "%q" .GOARCH }} }:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/os/executable_procfs.go

    package os
    
    import (
    	"errors"
    	"internal/stringslite"
    	"runtime"
    )
    
    func executable() (string, error) {
    	var procfn string
    	switch runtime.GOOS {
    	default:
    		return "", errors.New("Executable not implemented for " + runtime.GOOS)
    	case "linux", "android":
    		procfn = "/proc/self/exe"
    	case "netbsd":
    		procfn = "/proc/curproc/exe"
    	}
    	path, err := Readlink(procfn)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:26:04 UTC 2024
    - 715 bytes
    - Viewed (0)
Back to top