Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 838 for ncgo (0.04 sec)

  1. src/cmd/go/testdata/script/build_overlay.txt

    stdout $WORK[/\\]gopath[/\\]src[/\\]m[/\\]printpath[/\\]other.go
    
    [cgo] go build -overlay overlay.json -o main_cgo_replace$GOEXE ./cgo_hello_replace
    [cgo] exec ./main_cgo_replace$GOEXE
    [cgo] stdout '^hello cgo\r?\n'
    
    [cgo] go build -overlay overlay.json -o main_cgo_quote$GOEXE ./cgo_hello_quote
    [cgo] exec ./main_cgo_quote$GOEXE
    [cgo] stdout '^hello cgo\r?\n'
    
    [cgo] go build -overlay overlay.json -o main_cgo_angle$GOEXE ./cgo_hello_angle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 00:40:18 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    	mksyscall="go run mksyscall_aix_ppc.go -aix"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    aix_ppc64)
    	mkerrors="$mkerrors -maix64"
    	mksyscall="go run mksyscall_aix_ppc64.go -aix"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    darwin_amd64)
    	mkerrors="$mkerrors -m64"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    darwin_arm64)
    	mkerrors="$mkerrors -m64"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/search/search.go

    			if have[name] {
    				return nil
    			}
    			have[name] = true
    			if !match(name) {
    				return nil
    			}
    			pkg, err := cfg.BuildContext.ImportDir(path, 0)
    			if err != nil {
    				if _, noGo := err.(*build.NoGoError); noGo {
    					// The package does not actually exist, so record neither the package
    					// nor the error.
    					return nil
    				}
    				// There was an error importing path, but not matching it,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. api/go1.9.txt

    pkg math/bits (linux-amd64), const UintSize = 64
    pkg math/bits (linux-amd64-cgo), const UintSize = 64
    pkg math/bits (linux-arm), const UintSize = 32
    pkg math/bits (linux-arm-cgo), const UintSize = 32
    pkg math/bits (netbsd-386), const UintSize = 32
    pkg math/bits (netbsd-386-cgo), const UintSize = 32
    pkg math/bits (netbsd-amd64), const UintSize = 64
    pkg math/bits (netbsd-amd64-cgo), const UintSize = 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  5. src/runtime/tls_riscv64.s

    // If !iscgo, this is a no-op.
    //
    // NOTE: mcall() assumes this clobbers only X31 (REG_TMP).
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    #ifndef GOOS_openbsd
    	MOVB	runtime·iscgo(SB), X31
    	BEQZ	X31, nocgo
    #endif
    	MOV	g, runtime·tls_g(SB)
    nocgo:
    	RET
    
    TEXT runtime·load_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOV	runtime·tls_g(SB), g
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 615 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # combination with selected "unusual" flags (involving plugins, LTO)
    # that we force external linking.  See related
    # issues 58619,  58620, and 58848.
    
    [compiler:gccgo] skip # only external linking for gccgo
    
    [!cgo] skip 'test verifies behavior that depends on CGO_CFLAGS'
    [mustlinkext] skip 'test expects internal linking for non-cgo programs'
    
    # Here we build three program: one with explicit CGO use, one with no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/link_syso_deps.txt

    [!compiler:gc] skip 'requires syso support'
    [!cgo] skip
    [short] skip 'invokes system C compiler'
    
    # External linking is not supported on linux/ppc64.
    # See: https://github.com/golang/go/issues/8912
    [GOOS:linux] [GOARCH:ppc64] skip
    
    cc -c -o syso/x.syso syso/x.c
    cc -c -o syso2/x.syso syso2/x.c
    go build m/cgo
    
    -- go.mod --
    module m
    
    go 1.18
    -- cgo/x.go --
    package cgo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 742 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue24161_darwin_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cgo
    
    package cgotest
    
    import (
    	"testing"
    
    	"cmd/cgo/internal/test/issue24161arg"
    	"cmd/cgo/internal/test/issue24161e0"
    	"cmd/cgo/internal/test/issue24161e1"
    	"cmd/cgo/internal/test/issue24161e2"
    	"cmd/cgo/internal/test/issue24161res"
    )
    
    func Test24161Arg(t *testing.T) {
    	issue24161arg.Test(t)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 716 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_find_nodeps.txt

    go list -find -f {{.Deps}} ./cmd
    stdout '\[\]'
    
    # Cgo translation may add imports of "unsafe", "runtime/cgo" and "syscall"
    go list -find -f {{.Deps}} ./cgo
    stdout '\[\]'
    
    # SWIG adds imports of some standard packages
    go list -find -f {{.Deps}} ./swig
    stdout '\[\]'
    
    -- go.mod --
    module listfind
    
    -- cmd/main.go --
    package main
    
    func main() {}
    
    -- cgo/pkg.go --
    package cgopkg
    
    /*
    #include <limits.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 12 14:43:27 UTC 2021
    - 737 bytes
    - Viewed (0)
  10. test/typeparam/issue54765.go

    // arguments. (pointer-to-nih types are okay though.)
    
    //go:build cgo
    
    package p
    
    import (
    	"runtime/cgo"
    	"sync/atomic"
    )
    
    var _ atomic.Pointer[cgo.Incomplete]  // ERROR "cannot use incomplete \(or unallocatable\) type as a type argument: runtime/cgo\.Incomplete"
    var _ atomic.Pointer[*cgo.Incomplete] // ok
    
    func implicit(ptr *cgo.Incomplete) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 729 bytes
    - Viewed (0)
Back to top