Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for mylib (0.18 sec)

  1. src/debug/macho/file.go

    }
    
    // Open returns a new ReadSeeker reading the Mach-O section.
    func (s *Section) Open() io.ReadSeeker { return io.NewSectionReader(s.sr, 0, 1<<63-1) }
    
    // A Dylib represents a Mach-O load dynamic library command.
    type Dylib struct {
    	LoadBytes
    	Name           string
    	Time           uint32
    	CurrentVersion uint32
    	CompatVersion  uint32
    }
    
    // A Symtab represents a Mach-O symbol table command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/syscall/syscall_darwin.go

    	n = int(r0)
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func libc_getfsstat_trampoline()
    
    //go:cgo_import_dynamic libc_getfsstat getfsstat "/usr/lib/libSystem.B.dylib"
    
    // utimensat should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/tetratelabs/wazero
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. 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)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

                                sharedLibraryLinkFile = file("\${baseDir}/hello.lib")
                            }
                        } else if (os.macOsX) {
                            sharedLibraryFile = file("\${baseDir}/libhello.dylib")
                        } else {
                            sharedLibraryFile = file("\${baseDir}/libhello.so")
                        }
                    }
                }
            }
        }
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

            }
    
            @Override
            public String getFamilyName() {
                return "os x";
            }
    
            @Override
            public String getSharedLibrarySuffix() {
                return ".dylib";
            }
    
            @Override
            public String getNativePrefix() {
                return "darwin";
            }
        }
    
        static class Linux extends Unix {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/syscall/mksyscall.pl

    			# Tell the linker that funcname can be found in libSystem using varname without the libc_ prefix.
    			my $basename = substr $funcname, 5;
    			my $libc = "libc.so";
    			if ($darwin) {
    				$libc = "/usr/lib/libSystem.B.dylib";
    			}
    			$text .= "//go:cgo_import_dynamic $funcname $basename \"$libc\"\n\n";
    		}
    	}
    }
    
    chomp $text;
    chomp $text;
    
    if($errors) {
    	exit 1;
    }
    
    if($extraimports ne "") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. tensorflow/BUILD

    # as a workaround for https://github.com/tensorflow/tensorflow/issues/34117
    cc_import(
        name = "libtensorflow_framework_import_lib",
        shared_library = select({
            "//tensorflow:macos": ":libtensorflow_framework.dylib",
            "//conditions:default": ":libtensorflow_framework.so.%s" % VERSION_MAJOR,
        }),
    )
    
    # -------------------------------------------
    # New rules should be added above this target.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top