Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 659 for goose (0.04 sec)

  1. src/syscall/mkall.sh

    #
    # * syscall_${GOOS}.go
    #
    # This hand-written Go file implements system calls that need
    # special handling and lists "//sys" comments giving prototypes
    # for ones that can be auto-generated.  Mksyscall reads those
    # comments to generate the stubs.
    #
    # * syscall_${GOOS}_${GOARCH}.go
    #
    # Same as syscall_${GOOS}.go except that it contains code specific
    # to ${GOOS} on one particular architecture.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. src/cmd/asm/doc.go

    The same assembler is used for all target operating systems and architectures.
    The GOOS and GOARCH environment variables set the desired target.
    
    Flags:
    
    	-D name[=value]
    		Predefine symbol name with an optional simple value.
    		Can be repeated to define multiple symbols.
    	-I dir1 -I dir2
    		Search for #include files in dir1, dir2, etc,
    		after consulting $GOROOT/pkg/$GOOS_$GOARCH.
    	-S
    		Print assembly and machine code.
    	-V
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:46:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/gccgo.go

    	cfile = mkAbs(p.Dir, cfile)
    	defs := []string{"-D", "GOOS_" + cfg.Goos, "-D", "GOARCH_" + cfg.Goarch}
    	defs = append(defs, b.gccArchArgs()...)
    	if pkgpath := tools.gccgoCleanPkgpath(b, p); pkgpath != "" {
    		defs = append(defs, `-D`, `GOPKGPATH="`+pkgpath+`"`)
    	}
    	compiler := envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
    	if b.gccSupportsFlag(compiler, "-fsplit-stack") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	case "gc", "cmd_go_bootstrap", "go1.1":
    		return true
    	case "linux":
    		return goos == "linux" || goos == "android"
    	case "solaris":
    		return goos == "solaris" || goos == "illumos"
    	case "darwin":
    		return goos == "darwin" || goos == "ios"
    	case goos, goarch:
    		return true
    	case "unix":
    		return unixOS[goos]
    	default:
    		return false
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/list8.txt

    -- input --
    Loose lists.
      - A
    
        B
      - C
        D
      - E
      - F
    -- gofmt --
    Loose lists.
    
      - A
    
        B
    
      - C
        D
    
      - E
    
      - F
    -- text --
    Loose lists.
    
      - A
    
        B
    
      - C D
    
      - E
    
      - F
    -- markdown --
    Loose lists.
    
      - A
    
        B
    
      - C D
    
      - E
    
      - F
    -- html --
    <p>Loose lists.
    <ul>
    <li><p>A
    <p>B
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 335 bytes
    - Viewed (0)
  6. src/internal/platform/supported.go

    }
    
    // CgoSupported reports whether goos/goarch supports cgo.
    func CgoSupported(goos, goarch string) bool {
    	return distInfo[OSArch{goos, goarch}].CgoSupported
    }
    
    // FirstClass reports whether goos/goarch is considered a “first class” port.
    // (See https://go.dev/wiki/PortingPolicy#first-class-ports.)
    func FirstClass(goos, goarch string) bool {
    	return distInfo[OSArch{goos, goarch}].FirstClass
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/distpack/test.go

    	{name: "go/bin/go", goos: "linux"},
    	{name: "go/bin/go", goos: "darwin"},
    	{name: "go/bin/go", goos: "windows", exclude: true},
    	{name: "go/bin/go.exe", goos: "windows"},
    	{name: "go/bin/gofmt", goos: "linux"},
    	{name: "go/bin/gofmt", goos: "darwin"},
    	{name: "go/bin/gofmt", goos: "windows", exclude: true},
    	{name: "go/bin/gofmt.exe", goos: "windows"},
    	{name: "go/pkg/tool/*/compile", goos: "linux"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. pkg/util/procfs/procfs_linux_test.go

    }
    
    func TestPidOf(t *testing.T) {
    	if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
    		t.Skipf("not supported on GOOS=%s", runtime.GOOS)
    	}
    	pids, err := PidOf(filepath.Base(os.Args[0]))
    	assert.Empty(t, err)
    	assert.NotZero(t, pids)
    	assert.Contains(t, pids, os.Getpid())
    }
    
    func TestPKill(t *testing.T) {
    	if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
    		t.Skipf("not supported on GOOS=%s", runtime.GOOS)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/env_changed.txt

    stdout '"GO111MODULE": "auto"'
    stdout '"CGO_CFLAGS": "nodefault"'
    stdout '"CGO_CPPFLAGS": "nodefault"'
    
    [GOOS:windows] env GOOS=linux
    [!GOOS:windows] env GOOS=windows
    [GOARCH:amd64] env GOARCH=arm64
    [!GOARCH:amd64] env GOARCH=amd64
    
    go env -changed GOOS
    [GOOS:windows] stdout 'set GOOS=linux'
    [!GOOS:windows] stdout 'GOOS=''windows'''
    go env -changed GOARCH
    [GOARCH:amd64] stdout 'set GOARCH=arm64|GOARCH=''arm64'''
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:49:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/go/scriptconds_test.go

    	if CC != "" {
    		return CC == want, nil
    	}
    	GOOS, _ := s.LookupEnv("GOOS")
    	GOARCH, _ := s.LookupEnv("GOARCH")
    	return cfg.DefaultCC(GOOS, GOARCH) == want, nil
    }
    
    func sysCondition(flag string, f func(goos, goarch string) bool, needsCgo bool) script.Cond {
    	return script.Condition(
    		"GOOS/GOARCH supports "+flag,
    		func(s *script.State) (bool, error) {
    			GOOS, _ := s.LookupEnv("GOOS")
    			GOARCH, _ := s.LookupEnv("GOARCH")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top