Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for dylib (0.04 sec)

  1. src/runtime/sys_darwin.go

    //go:cgo_import_dynamic libc_pthread_kill pthread_kill "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_exit _exit "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_raise raise "/usr/lib/libSystem.B.dylib"
    
    //go:cgo_import_dynamic libc_open open "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_close close "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_read read "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

                .replaceAll("platform '[\\w+\\-]+'","platform 'current'")
                .replaceAll("(build/libs/.+/shared/(\\w+))\\.so") { "${it[1]}.dylib" }
                .replaceAll("((build/libs/.+/shared/)(\\w+))\\.dll") { "${it[2]}lib${it[3]}.dylib" }
                .replaceAll("((build/libs/.+/static/)(\\w+))\\.lib") { "${it[2]}lib${it[3]}.a" }
                .replaceAll("(build/exe/.+/\\w+)\\.exe") { it[1] }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

            def jarFile5 = inputFilesDir.file('lib5.jar')
            createJarFileWithResources(jarFile5, [
                'org/gradle/reporting/report.js',
                'net/rubygrapefruit/platform/osx-i386/libnative-platform.dylib',
                'org/joda/time/tz/data/Africa/Abidjan'])
            def jarFile6 = inputFilesDir.file('lib6.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/security.go

    	re(`-Wl,--(no-)?warn-([^,]+)`),
    	re(`-Wl,-?-wrap[=,][^,@\-][^,]*`),
    	re(`-Wl(,-z,(relro|now|(no)?execstack))+`),
    
    	re(`[a-zA-Z0-9_/].*\.(a|o|obj|dll|dylib|so|tbd)`), // direct linker inputs: x.o or libfoo.so (but not -foo.o or @foo.o)
    	re(`\./.*\.(a|o|obj|dll|dylib|so|tbd)`),
    }
    
    var validLinkerFlagsWithNextArg = []string{
    	"-arch",
    	"-F",
    	"-l",
    	"-L",
    	"-framework",
    	"-isysroot",
    	"--sysroot",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/macho.go

    	// beginning of the output file.
    	loadBudget -= (len(lib)+7)/8*8 + 24
    
    	if loadBudget < 0 {
    		HEADR += 4096
    		*FlagTextAddr += 4096
    		loadBudget += 4096
    	}
    
    	dylib = append(dylib, lib)
    }
    
    func machoshbits(ctxt *Link, mseg *MachoSeg, sect *sym.Section, segname string) {
    	buf := "__" + strings.Replace(sect.Name[1:], ".", "_", -1)
    
    	msect := newMachoSect(mseg, buf, segname)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top