Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for mylib (0.11 sec)

  1. src/cmd/cgo/internal/testsanitizers/cshared_test.go

    	GOOS, err := goEnv("GOOS")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	GOARCH, err := goEnv("GOARCH")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	libExt := "so"
    	if GOOS == "darwin" {
    		libExt = "dylib"
    	}
    
    	cases := []struct {
    		src       string
    		sanitizer string
    	}{
    		{
    			src:       "msan_shared.go",
    			sanitizer: "memory",
    		},
    		{
    			src:       "tsan_shared.go",
    			sanitizer: "thread",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_darwin_amd64.go

    	written = int(length)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func libc_sendfile_trampoline()
    
    //go:cgo_import_dynamic libc_sendfile sendfile "/usr/lib/libSystem.B.dylib"
    
    // Implemented in the runtime package (runtime/sys_darwin_64.go)
    func syscallX(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/syscall/syscall_darwin_arm64.go

    	written = int(length)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func libc_sendfile_trampoline()
    
    //go:cgo_import_dynamic libc_sendfile sendfile "/usr/lib/libSystem.B.dylib"
    
    // Implemented in the runtime package (runtime/sys_darwin_64.go)
    func syscallX(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/components/NativeComponentReportOutputFormatter.groovy

                .replace("platform 'current'", "platform '${NativePlatformsTestFixture.defaultPlatformName}'")
                .replaceAll('(?m)(build/libs/.+/)lib(\\w+).dylib$') { it[1] + OperatingSystem.current().getSharedLibraryName(it[2]) }
                .replaceAll('(?m)(build/libs/.+/)lib(\\w+).a$') { it[1] + OperatingSystem.current().getStaticLibraryName(it[2]) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 25 01:52:21 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/components/DiagnosticsComponentReportIntegrationTest.groovy

            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/nativeLib/shared/libnativeLib.dylib
        Static library 'nativeLib:staticLibrary'
            build using task: :nativeLibStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 16 21:36:13 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testfortran/fortran_test.go

    		// with the C linker, this may be in a path the C linker can't
    		// find on its own. (See #14544)
    		libExt := "so"
    		switch runtime.GOOS {
    		case "darwin":
    			libExt = "dylib"
    		case "aix":
    			libExt = "a"
    		}
    		libPath, err := exec.Command(fc, append([]string{"-print-file-name=libgfortran." + libExt}, fcExtra...)...).CombinedOutput()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/debug/macho/macho.go

    const (
    	TypeObj    Type = 1
    	TypeExec   Type = 2
    	TypeDylib  Type = 6
    	TypeBundle Type = 8
    )
    
    var typeStrings = []intName{
    	{uint32(TypeObj), "Obj"},
    	{uint32(TypeExec), "Exec"},
    	{uint32(TypeDylib), "Dylib"},
    	{uint32(TypeBundle), "Bundle"},
    }
    
    func (t Type) String() string   { return stringName(uint32(t), typeStrings, false) }
    func (t Type) GoString() string { return stringName(uint32(t), typeStrings, true) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/work/security_test.go

    	{"-Wl,-R", "foo"},
    	{"-Wl,-R,foo"},
    	{"-Wl,--just-symbols=foo"},
    	{"-Wl,--just-symbols,foo"},
    	{"-Wl,--warn-error"},
    	{"-Wl,--no-warn-error"},
    	{"foo.so"},
    	{"_世界.dll"},
    	{"./x.o"},
    	{"libcgosotest.dylib"},
    	{"-F", "framework"},
    	{"-l", "."},
    	{"-l", "/etc/passwd"},
    	{"-l", "世界"},
    	{"-L", "framework"},
    	{"-framework", "Chocolate"},
    	{"-v"},
    	{"-Wl,-sectcreate,__TEXT,__info_plist,${SRCDIR}/Info.plist"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/crypto/x509/internal/macos/corefoundation.go

    // license that can be found in the LICENSE file.
    
    //go:build darwin
    
    // Package macOS provides cgo-less wrappers for Core Foundation and
    // Security.framework, similarly to how package syscall provides access to
    // libSystem.dylib.
    package macOS
    
    import (
    	"bytes"
    	"errors"
    	"internal/abi"
    	"runtime"
    	"time"
    	"unsafe"
    )
    
    // Core Foundation linker flags for the external linker. See Issue 42459.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 8.4K bytes
    - Viewed (0)
Back to top