Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 814 for linking (0.32 sec)

  1. cmd/kube-controller-manager/app/plugins.go

    	allPlugins := []volume.VolumePlugin{}
    
    	// The list of plugins to probe is decided by this binary, not
    	// by dynamic linking or other "magic".  Plugins will be analyzed and
    	// initialized later.
    
    	// Each plugin can make use of VolumeConfig.  The single arg to this func contains *all* enumerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/build-goboring.sh

    clang++ -std=c++11 -fPIC -I../boringssl/include -O2 -o a.out  goboringcrypto.cc
    ./a.out || exit 2
    
    # clang implements u128 % u128 -> u128 by calling __umodti3,
    # which is in libgcc. To make the result self-contained even if linking
    # against a different compiler version, link our own __umodti3 into the syso.
    # This one is specialized so it only expects divisors below 2^64,
    # which is all BoringCrypto uses. (Otherwise it will seg fault.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    `__variant__LinkElements` (e.g. `debugLinkElements` and `releaseLinkElements`) extends `main__Variant__Implementation`::
    Used for linking against the library.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to link against the library.
    
    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. build/root/Makefile

    #     "vendor/<module>/<path>" is accepted as alias for "<module>/<path>".
    #     "ginkgo" is an alias for the ginkgo CLI.
    #   GOFLAGS: Extra flags to pass to 'go' when building.
    #   GOLDFLAGS: Extra linking flags passed to 'go' when building.
    #   GOGCFLAGS: Additional go compile flags passed to 'go' when building.
    #   DBG: If set to "1", build with optimizations disabled for easier
    #     debugging.  Any other value is ignored.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/inittask.go

    		// Pick the lexicographically first initializable package.
    		s := h.pop(ldr)
    
    		// Add s to the schedule.
    		if ldr.SymSize(s) > 8 {
    			// Note: don't add s if it has no functions to run. We need
    			// s during linking to compute an ordering, but the runtime
    			// doesn't need to know about it. About 1/2 of stdlib packages
    			// fit in this bucket.
    			sched.AddAddr(ctxt.Arch, s)
    		}
    
    		// Find all incoming edges into s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    		case "loong64", "mips", "mipsle", "mips64", "mips64le":
    			// Internally linking cgo is incomplete on some architectures.
    			// https://golang.org/issue/14449
    			return true
    		case "arm64":
    			if goos == "windows" {
    				// windows/arm64 internal linking is not implemented.
    				return true
    			}
    		case "ppc64":
    			// Big Endian PPC64 cgo internal linking is not implemented for aix or linux.
    			if goos == "aix" || goos == "linux" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            this.targetPlatform = objectFactory.property(NativePlatform.class);
            this.toolChain = objectFactory.property(NativeToolChain.class);
        }
    
        /**
         * The tool chain used for linking.
         *
         * @since 4.7
         */
        @Internal
        public Property<NativeToolChain> getToolChain() {
            return toolChain;
        }
    
        /**
         * The platform being linked for.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho.go

    // Currently only used on ARM64 when external linking.
    func AddMachoSym(ldr *loader.Loader, s loader.Sym) {
    	ldr.SetSymDynid(s, int32(nsortsym))
    	sortsym = append(sortsym, s)
    	nsortsym++
    	nkind[symkind(ldr, s)]++
    }
    
    // machoShouldExport reports whether a symbol needs to be exported.
    //
    // When dynamically linking, all non-local variables and plugin-exported
    // symbols need to be exported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. src/crypto/x509/internal/macos/security.go

    	status int32
    }
    
    func (s OSStatus) Error() string {
    	return s.call + " error: " + strconv.Itoa(int(s.status))
    }
    
    // Dictionary keys are defined as build-time strings with CFSTR, but the Go
    // linker's internal linking mode can't handle CFSTR relocations. Create our
    // own dynamic strings instead and just never release them.
    //
    // Note that this might be the only thing that can break over time if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    # Link in architecture specific includes from the system; note that we cannot
    # link in the whole aarch64-linux-gnu folder, as otherwise we're overlaying
    # system gcc paths that we do not want to find.
    # TODO(klimek): Automate linking in all non-gcc / non-kernel include
    # directories.
    mkdir -p "${TARGET}/usr/include/aarch64-linux-gnu"
    PYTHON_VERSIONS=("python3.8" "python3.9" "python3.10" "python3.11")
    for v in "${PYTHON_VERSIONS[@]}"; do
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top