Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 92 for my_lib (3.53 sec)

  1. src/cmd/link/internal/ld/pe.go

    		if !ldr.AttrReachable(s) || ldr.SymType(s) != sym.SDYNIMPORT {
    			continue
    		}
    		dynlib := ldr.SymDynimplib(s)
    		for d = dr; d != nil; d = d.next {
    			if d.name == dynlib {
    				m = new(Imp)
    				break
    			}
    		}
    
    		if d == nil {
    			d = new(Dll)
    			d.name = dynlib
    			d.next = dr
    			dr = d
    			m = new(Imp)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  2. 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)
  3. docs/ja/docs/tutorial/body-nested-models.md

    ```
    
    ### タイプパラメータを持つ`List`の宣言
    
    `list`や`dict`、`tuple`のようなタイプパラメータ(内部の型)を持つ型を宣言するには:
    
    * `typing`モジュールからそれらをインストールします。
    * 角括弧(`[`と`]`)を使って「タイプパラメータ」として内部の型を渡します:
    
    ```Python
    from typing import List
    
    my_list: List[str]
    ```
    
    型宣言の標準的なPythonの構文はこれだけです。
    
    内部の型を持つモデルの属性にも同じ標準の構文を使用してください。
    
    そのため、以下の例では`tags`を具体的な「文字列のリスト」にすることができます:
    
    ```Python hl_lines="14"
    {!../../../docs_src/body_nested_models/tutorial002.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    
    [[sec:dependencies_within_the_same_project]]
    === Dependencies within the same project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    In case you want to reference a version declared in the `[versions]` section, you should use the `version.ref` property:
    
    ```
    [versions]
    some = "1.4"
    
    [libraries]
    my-lib = { group = "com.mycompany", name="mylib", version.ref="some" }
    ```
    
    --
    The TOML file format is very lenient and lets you write "dotted" properties as shortcuts to full object declarations.
    For example, this:
    
    ```
    a.b.c="d"
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/link/internal/ld/lib.go

    	}
    	return ctxt.canUsePlugins
    }
    
    // NeedCodeSign reports whether we need to code-sign the output binary.
    func (ctxt *Link) NeedCodeSign() bool {
    	return ctxt.IsDarwin() && ctxt.IsARM64()
    }
    
    var (
    	dynlib          []string
    	ldflag          []string
    	havedynamic     int
    	Funcalign       int
    	iscgo           bool
    	elfglobalsymndx int
    	interpreter     string
    
    	debug_s bool // backup old value of debug['s']
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top