Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 814 for linking (0.24 sec)

  1. tensorflow/compiler/jit/BUILD

            "@com_google_absl//absl/strings",
            "@com_google_absl//absl/types:optional",
            "@local_xla//xla:parse_flags_from_env",
        ],
    )
    
    # Header-only version of "flags" library, for linking from the shared object
    # without ODR violations.
    cc_library(
        name = "flags_headers",
        hdrs = ["flags.h"],
        visibility = [":friends"],
        deps = [
            "//tensorflow/core:framework_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    env GOFLAGS=
    ! go install -modfile=go.mod example.com/cmd/a@latest
    stderr '^go: -modfile cannot be used with commands that ignore the current module$'
    cd ..
    
    
    # Every test case requires linking, so we only cover the most important cases
    # when -short is set.
    [short] stop
    
    
    # 'go install pkg@version' works on a module that doesn't have a go.mod file
    # and with a module whose go.mod file has missing requirements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/net/net.go

    join the two settings by a plus sign, as in GODEBUG=netdns=go+1.
    
    On macOS, if Go code that uses the net package is built with
    -buildmode=c-archive, linking the resulting archive into a C program
    requires passing -lresolv when linking the C code.
    
    On Plan 9, the resolver always accesses /net/cs and /net/dns.
    
    On Windows, in Go 1.18.x and earlier, the resolver always used C
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// problems if we are using internal linking (for example, use of
    	// plugins, LTO, etc) by calling a helper routine that builds on
    	// the existing CGO flags allow-lists. If we see anything
    	// suspicious, emit a special token file "preferlinkext" (known to
    	// the linker) in the object file to signal the that it should not
    	// try to link internally and should revert to external linking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_outside.txt

    
    # 'go fmt' should be able to format files outside of a module.
    go fmt needmod/needmod.go
    
    
    # The remainder of the test checks dependencies by linking and running binaries.
    
    # 'go run' should work with file arguments if they don't import anything
    # outside std.
    go run ./stdonly/stdonly.go
    stdout 'path is command-line-arguments$'
    stdout 'main is  $'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    	// flags are already correct, but the other fields still need filling in.
    	if sh.Type == uint32(elf.SHT_NOTE) {
    		if linkmode != LinkExternal {
    			// TODO(mwhudson): the approach here will work OK when
    			// linking internally for notes that we want to be included
    			// in a loadable segment (e.g. the abihash note) but not for
    			// notes that we do not want to be mapped (e.g. the package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/debug/buildinfo/buildinfo_test.go

    // platforms (or all platforms if -all is set) in various configurations and
    // checks that build information can or cannot be read.
    func TestReadFile(t *testing.T) {
    	if testing.Short() {
    		t.Skip("test requires compiling and linking, which may be slow")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	type platform struct{ goos, goarch string }
    	platforms := []platform{
    		{"aix", "ppc64"},
    		{"darwin", "amd64"},
    		{"darwin", "arm64"},
    		{"linux", "386"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Used for linking the application.
    This configuration contains the libraries of the application and is therefore used when invoking the {cpp} linker to link it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/abi.go

    	tailcall := fn.Type().NumResults() == 0 && fn.Type().NumParams() == 0 && fn.Type().NumRecvs() == 0
    	if base.Ctxt.Arch.Name == "ppc64le" && base.Ctxt.Flag_dynlink {
    		// cannot tailcall on PPC64 with dynamic linking, as we need
    		// to restore R2 after call.
    		tailcall = false
    	}
    	if base.Ctxt.Arch.Name == "amd64" && wrapperABI == obj.ABIInternal {
    		// cannot tailcall from ABIInternal to ABI0 on AMD64, as we need
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. pkg/kube/krt/README.md

    The framework will use generic Equals on the underlying object to determine whether or not to recompute collections.
    
    ### Picking a collection type
    
    There are a variety of collection types available.
    Picking these is about simplicity, usability, and performance.
    
    The `NewSingleton` form (`func() *O`), in theory, could be used universally.
    Consider a transformation from `Pod` to `SimplePod`:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top