Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 838 for ncgo (0.04 sec)

  1. src/vendor/golang.org/x/net/route/zsys_darwin.go

    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs defs_darwin.go
    
    package route
    
    const (
    	sizeofIfMsghdrDarwin15    = 0x70
    	sizeofIfaMsghdrDarwin15   = 0x14
    	sizeofIfmaMsghdrDarwin15  = 0x10
    	sizeofIfMsghdr2Darwin15   = 0xa0
    	sizeofIfmaMsghdr2Darwin15 = 0x14
    	sizeofIfDataDarwin15      = 0x60
    	sizeofIfData64Darwin15    = 0x80
    
    	sizeofRtMsghdrDarwin15  = 0x5c
    	sizeofRtMsghdr2Darwin15 = 0x5c
    	sizeofRtMetricsDarwin15 = 0x38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 533 bytes
    - Viewed (0)
  2. src/net/cgo_solaris.go

    // Copyright 2015 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 && !netgo
    
    package net
    
    /*
    #cgo LDFLAGS: -lsocket -lnsl -lsendfile
    #include <netdb.h>
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 343 bytes
    - Viewed (0)
  3. src/runtime/cgo/callbacks_aix.go

    // Copyright 2019 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.
    
    package cgo
    
    // These functions must be exported in order to perform
    // longcall on cgo programs (cf gcc_aix_ppc64.c).
    //
    //go:cgo_export_static __cgo_topofstack
    //go:cgo_export_static runtime.rt0_go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 402 bytes
    - Viewed (0)
  4. src/runtime/defs1_netbsd_arm.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_netbsd.go defs_netbsd_arm.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.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/issue29563.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cgo && !windows
    
    // Issue 29563: internal linker fails on duplicate weak symbols.
    // No runtime test; just make sure it compiles.
    
    package cgotest
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 363 bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/vet.test

    === RUN   TestVetDirs/buildtag
    === PAUSE TestVetDirs/buildtag
    === CONT  TestVet/0
    === CONT  TestVet/4
    === RUN   TestVetDirs/incomplete
    === PAUSE TestVetDirs/incomplete
    === RUN   TestVetDirs/cgo
    === PAUSE TestVetDirs/cgo
    === CONT  TestVet/7
    === CONT  TestVet/6
    --- PASS: TestVetVerbose (0.04s)
    === CONT  TestVet/5
    === CONT  TestVet/3
    === CONT  TestVet/2
    --- PASS: TestTags (0.00s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  7. src/syscall/mkpost.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // mkpost processes the output of cgo -godefs to
    // modify the generated types. It is used to clean up
    // the syscall API in an architecture specific manner.
    //
    // mkpost is run after cgo -godefs by mkall.sh.
    package main
    
    import (
    	"fmt"
    	"go/format"
    	"io"
    	"log"
    	"os"
    	"regexp"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue26430.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cgo
    
    // Issue 26430: incomplete typedef leads to inconsistent typedefs error.
    // No runtime test; just make sure it compiles.
    
    package cgotest
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 359 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/generate_invalid.txt

    	"strings"
    )
    
    func main() {
    	fmt.Println(strings.Join(os.Args[1:], " "))
    	fmt.Println()
    }
    
    -- go.mod --
    module m
    
    go 1.16
    -- nogo/foo.txt --
    Text file in a directory without go files.
    Go generate should ignore this directory.
    //go:generate echo Fail nogo
    
    -- excluded/a.go --
    // Include a build tag that go generate should exclude.
    // Go generate should ignore this file.
    
    // +build a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.nego;
    
    
    import jcifs.Configuration;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author mbechler
     *
     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.2K bytes
    - Viewed (0)
Back to top