Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for mylib (0.06 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkSharedLibrary.html#org.gradle.nativeplatform.tasks.LinkSharedLibrary:linkedFile[linkedFile]:: `layout.buildDirectory.dir("lib/main/__$variant__/libBaseName[.so|dylib]")` (*nix) or `layout.buildDirectory.dir("lib\main{backslash}__$variant__\baseName.dll")` (Windows)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkSharedLibrary.html#org.gradle.nativeplatform.tasks.LinkSharedLibrary:linkedFile[linkedFile]:: `layout.buildDirectory.dir("lib/main/__$variant__/libModule[.so|dylib]")`
    
    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkSharedLibrary.html#org.gradle.nativeplatform.tasks.LinkSharedLibrary:linkerArgs[linkerArgs]:: []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	dir = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_fdopendir_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_fdopendir fdopendir "/usr/lib/libSystem.B.dylib"
    
    func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
    	// Simulate Getdirentries using fdopendir/readdir_r/closedir.
    	// We store the number of entries to skip in the seek
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CpuArm", Const, 3},
    		{"CpuArm64", Const, 11},
    		{"CpuPpc", Const, 3},
    		{"CpuPpc64", Const, 3},
    		{"Dylib", Type, 0},
    		{"Dylib.CompatVersion", Field, 0},
    		{"Dylib.CurrentVersion", Field, 0},
    		{"Dylib.LoadBytes", Field, 0},
    		{"Dylib.Name", Field, 0},
    		{"Dylib.Time", Field, 0},
    		{"DylibCmd", Type, 0},
    		{"DylibCmd.Cmd", Field, 0},
    		{"DylibCmd.CompatVersion", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg debug/macho, type Cpu uint32
    pkg debug/macho, type Dylib struct
    pkg debug/macho, type Dylib struct, CompatVersion uint32
    pkg debug/macho, type Dylib struct, CurrentVersion uint32
    pkg debug/macho, type Dylib struct, Name string
    pkg debug/macho, type Dylib struct, Time uint32
    pkg debug/macho, type Dylib struct, embedded LoadBytes
    pkg debug/macho, type DylibCmd struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top