Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 838 for ncgo (0.05 sec)

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

    [short] skip
    [!cgo] skip
    
    [!exec:/usr/bin/env] skip
    [!exec:bash] skip
    
    mkdir $WORK/tmp/cache
    env GOCACHE=$WORK/tmp/cache
    
    # Before building our test main.go, ensure that an up-to-date copy of
    # runtime/cgo is present in the cache. If it isn't, the 'go build' step below
    # will fail with "can't open import". See golang.org/issue/29004.
    #
    # (The fix in golang.org/issue/29004 didn't completely fix the underlying issue:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/route/zsys_openbsd.go

    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs defs_openbsd.go
    
    package route
    
    const (
    	sizeofRtMsghdr = 0x60
    
    	sizeofSockaddrStorage = 0x100
    	sizeofSockaddrInet    = 0x10
    	sizeofSockaddrInet6   = 0x1c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 223 bytes
    - Viewed (0)
  3. src/runtime/defs1_netbsd_386.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_netbsd.go defs_netbsd_386.go
    
    package runtime
    
    const (
    	_EINTR  = 0x4
    	_EFAULT = 0xe
    	_EAGAIN = 0x23
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x400000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    	_MAP_PRIVATE = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/runtime/defs1_netbsd_amd64.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_netbsd.go defs_netbsd_amd64.go
    
    package runtime
    
    const (
    	_EINTR  = 0x4
    	_EFAULT = 0xe
    	_EAGAIN = 0x23
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x400000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    	_MAP_PRIVATE = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. test/fixedbugs/notinheap3.go

    // Test write barrier elimination for notinheap.
    
    //go:build cgo
    
    package p
    
    import "runtime/cgo"
    
    type t1 struct {
    	x *nih
    	s []nih
    	y [1024]byte // Prevent write decomposition
    }
    
    type t2 struct {
    	x *ih
    	s []ih
    	y [1024]byte
    }
    
    type nih struct {
    	_ cgo.Incomplete
    	x uintptr
    }
    
    type ih struct { // In-heap type
    	x uintptr
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 17:46:15 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. api/go1.11.txt

    pkg syscall (openbsd-386-cgo), const SOCK_CLOEXEC = 32768
    pkg syscall (openbsd-386-cgo), const SOCK_CLOEXEC ideal-int
    pkg syscall (openbsd-386-cgo), const SOCK_NONBLOCK = 16384
    pkg syscall (openbsd-386-cgo), const SOCK_NONBLOCK ideal-int
    pkg syscall (openbsd-386-cgo), const SYS_ACCEPT4 = 93
    pkg syscall (openbsd-386-cgo), const SYS_ACCEPT4 ideal-int
    pkg syscall (openbsd-386-cgo), const SYS_PIPE2 = 101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 22 03:48:56 UTC 2018
    - 25K bytes
    - Viewed (0)
  7. src/runtime/defs3_linux.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    Input to cgo -cdefs
    
    GOARCH=ppc64 cgo -cdefs defs_linux.go defs3_linux.go > defs_linux_ppc64.h
    */
    
    package runtime
    
    /*
    #define size_t __kernel_size_t
    #define sigset_t __sigset_t // rename the sigset_t here otherwise cgo will complain about "inconsistent definitions for C.sigset_t"
    #define	_SYS_TYPES_H	// avoid inclusion of sys/types.h
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/go.go

    		if line == "main" {
    			lib.Main = true
    		}
    		if line == "" {
    			break
    		}
    	}
    
    	// look for cgo section
    	p0 := strings.Index(data, "\n$$  // cgo")
    	var p1 int
    	if p0 >= 0 {
    		p0 += p1
    		i := strings.IndexByte(data[p0+1:], '\n')
    		if i < 0 {
    			fmt.Fprintf(os.Stderr, "%s: found $$ // cgo but no newline in %s\n", os.Args[0], filename)
    			return
    		}
    		p0 += 1 + i
    
    		p1 = strings.Index(data[p0:], "\n$$")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/dist/buildtool.go

    // include all packages within subdirectories as well.
    // These will be imported during bootstrap as bootstrap/name, like bootstrap/math/big.
    var bootstrapDirs = []string{
    	"cmp",
    	"cmd/asm",
    	"cmd/asm/internal/...",
    	"cmd/cgo",
    	"cmd/compile",
    	"cmd/compile/internal/...",
    	"cmd/internal/archive",
    	"cmd/internal/bio",
    	"cmd/internal/codesign",
    	"cmd/internal/dwarf",
    	"cmd/internal/edit",
    	"cmd/internal/gcprog",
    	"cmd/internal/goobj",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue9026.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // 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/issue9026"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 302 bytes
    - Viewed (0)
Back to top