Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for mylib (0.03 sec)

  1. src/runtime/sys_darwin_arm64.go

    }
    func pthread_setspecific_trampoline()
    
    //go:cgo_import_dynamic libc_pthread_key_create pthread_key_create "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_pthread_setspecific pthread_setspecific "/usr/lib/libSystem.B.dylib"
    
    // tlsinit allocates a thread-local storage slot for g.
    //
    // It finds the first available slot using pthread_key_create and uses
    // it as the offset value for runtime.tlsg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/syscall/unix/eaccess_darwin.go

    package unix
    
    import (
    	"internal/abi"
    	"syscall"
    	"unsafe"
    )
    
    func libc_faccessat_trampoline()
    
    //go:cgo_import_dynamic libc_faccessat faccessat "/usr/lib/libSystem.B.dylib"
    
    func faccessat(dirfd int, path string, mode uint32, flags int) error {
    	p, err := syscall.BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 15:02:38 UTC 2024
    - 791 bytes
    - Viewed (0)
  3. src/debug/macho/file_test.go

    			nil, // LC_SYMTAB
    			nil, // LC_DYSYMTAB
    			nil, // LC_LOAD_DYLINKER
    			nil, // LC_UUID
    			nil, // LC_UNIXTHREAD
    			&Dylib{nil, "/usr/lib/libgcc_s.1.dylib", 0x2, 0x10000, 0x10000},
    			&Dylib{nil, "/usr/lib/libSystem.B.dylib", 0x2, 0x6f0104, 0x10000},
    		},
    		[]*SectionHeader{
    			{"__text", "__TEXT", 0x1f68, 0x88, 0xf68, 0x2, 0x0, 0x0, 0x80000400},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testso/testdata/so/cgoso.go

    #cgo freebsd LDFLAGS: -L. -l cgosotest
    #cgo openbsd LDFLAGS: -L. -l cgosotest
    #cgo solaris LDFLAGS: -L. -lcgosotest
    #cgo netbsd LDFLAGS: -L. libcgosotest.so
    #cgo darwin LDFLAGS: -L. libcgosotest.dylib
    #cgo windows LDFLAGS: -L. libcgosotest.a
    #cgo aix LDFLAGS: -L. -l cgosotest
    
    void init(void);
    void sofunc(void);
    */
    import "C"
    
    func Test() {
    	C.init()
    	C.sofunc()
    }
    
    //export goCallback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:41 UTC 2023
    - 761 bytes
    - Viewed (0)
  5. src/cmd/link/testdata/dynimportvar/asm/a.go

    // This is a separate package because we cannot have Go
    // assembly code and cgo code in the same package.
    
    //go:build darwin
    
    package asm
    
    //go:cgo_import_dynamic libc_mach_task_self_ mach_task_self_ "/usr/lib/libSystem.B.dylib"
    
    // load mach_task_self_ from assembly code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 19:39:32 UTC 2023
    - 463 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/build.gradle

                                sharedLibraryLinkFile = file("${baseDir}/util.lib")
                            }
                        } else if (os.macOsX) {
                            sharedLibraryFile = file("${baseDir}/libutil.dylib")
                        } else {
                            sharedLibraryFile = file("${baseDir}/libutil.so")
                        }
                    }
                }
            }
        }
    
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/internal/syscall/unix/arc4random_darwin.go

    // license that can be found in the LICENSE file.
    
    package unix
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    //go:cgo_import_dynamic libc_arc4random_buf arc4random_buf "/usr/lib/libSystem.B.dylib"
    
    func libc_arc4random_buf_trampoline()
    
    // ARC4Random calls the macOS arc4random_buf(3) function.
    func ARC4Random(p []byte) {
    	// macOS 11 and 12 abort if length is 0.
    	if len(p) == 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 633 bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/FileTypes.java

        /**
         * Apple UTI for executables.
         */
        MACH_O_EXECUTABLE("", "compiled.mach-o.executable"),
    
        /**
         * Apple UTI for dynamic libraries.
         */
        MACH_O_DYNAMIC_LIBRARY("dylib", "compiled.mach-o.dylib"),
    
        /**
         * Apple UTI for static libraries.
         */
        ARCHIVE_LIBRARY("a", "archive.ar"),
    
        C_SOURCE_CODE("c", "sourcecode.c.c"),
        CC_SOURCE_CODE("cc", "sourcecode.cpp.cpp"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/darwin_lto_library_ldflag.txt

    [!GOOS:darwin] skip
    [!cgo] skip
    
    ! go build
    stderr 'invalid flag in #cgo LDFLAGS: -lto_library'
    
    -- go.mod --
    module ldflag
    
    -- main.go --
    package main
    
    // #cgo CFLAGS: -flto
    // #cgo LDFLAGS: -lto_library bad.dylib
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:41:16 UTC 2024
    - 241 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/BUILD

        name = "_pywrap_tac_wrapper",
        srcs = [
            "tac_wrapper_pybind11.cc",
        ],
        hdrs = ["tac_wrapper.h"],
        dynamic_deps = select({
            "//tensorflow:macos": ["//tensorflow:libtensorflow_framework.%s.dylib" % VERSION],
            "//tensorflow:windows": [],
            "//conditions:default": ["//tensorflow:libtensorflow_framework.so.%s" % VERSION],
        }),
        enable_stub_generation = True,
        pytype_srcs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top