Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 220 for linking (0.28 sec)

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

    	"path/filepath"
    	"syscall"
    )
    
    const syscallExecSupported = true
    
    // execArchive invokes the archiver tool with syscall.Exec(), with
    // the expectation that this is the last thing that takes place
    // in the linking operation.
    func (ctxt *Link) execArchive(argv []string) {
    	var err error
    	argv0 := argv[0]
    	if filepath.Base(argv0) == argv0 {
    		argv0, err = exec.LookPath(argv0)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 876 bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/outbuf_mmap.go

    		out.munmap()
    	}
    
    	for {
    		if err = out.fallocate(filesize); err != syscall.EINTR {
    			break
    		}
    	}
    	if err != nil {
    		// Some file systems do not support fallocate. We ignore that error as linking
    		// can still take place, but you might SIGBUS when you write to the mmapped
    		// area.
    		if err != syscall.ENOTSUP && err != syscall.EPERM && err != errNoFallocate {
    			return err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/next_pluggable_device/BUILD

            "@local_xla//xla/pjrt/c:pjrt_c_api_helpers",
            "@local_xla//xla/tsl/distributed_runtime/coordination:coordination_service_agent",
        ],
    )
    
    # Plugin should include this target to avoid linking the C API implementation.
    cc_library(
        name = "c_api_hdrs",
        hdrs = ["c_api.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/c:c_api_macros_hdrs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins, tasks and compiler infrastructure for compiling/linking code"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 2 occurrences
            "EqualsUnsafeCast", // 1 occurrences
            "GetClassOnClass", // 1 occurrences
            "HidingField", // 1 occurrences
            "ImmutableEnumChecker", // 2 occurrences
            "ReferenceEquality", // 2 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Base task for linking a native binary from object files and libraries.
     */
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinker.java

        @Override
        protected Action<BuildOperationQueue<CommandLineToolInvocation>> newInvocationAction(final LinkerSpec spec, List<String> args) {
            final CommandLineToolInvocation invocation = newInvocation(
                "linking " + spec.getOutputFile().getName(), args, spec.getOperationLogger());
    
            return new Action<BuildOperationQueue<CommandLineToolInvocation>>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinker.java

        @Override
        protected Action<BuildOperationQueue<CommandLineToolInvocation>> newInvocationAction(final LinkerSpec spec, List<String> args) {
            final CommandLineToolInvocation invocation = newInvocation(
                "linking " + spec.getOutputFile().getName(), spec.getOutputFile().getParentFile(), args, spec.getOperationLogger());
    
            return new Action<BuildOperationQueue<CommandLineToolInvocation>>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    cp $WORK/extraneous.txt $GOPATH/pkg/mod/example.com/printversion@v0.1.0/extraneous_file.go
    go clean -modcache
    
    
    # Also try it with a 'go install' that succeeds.
    # (But skip in short mode, because linking a binary is expensive.)
    [!short] go install -modcacherw example.com/printversion@v0.1.0
    [!short] cp $WORK/extraneous.txt $GOPATH/pkg/mod/example.com/printversion@v0.1.0/extraneous_file.go
    [!short] go clean -modcache
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/security_test.go

    func TestCheckCompilerFlagsForInternalLink(t *testing.T) {
    	// Any "bad" compiler flag should trigger external linking.
    	for _, f := range badCompilerFlags {
    		if err := checkCompilerFlagsForInternalLink("test", "test", f); err == nil {
    			t.Errorf("missing error for %q", f)
    		}
    	}
    
    	// All "good" compiler flags should not trigger external linking,
    	// except for anything that begins with "-flto".
    	for _, f := range goodCompilerFlags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LinkExeLinker.java

        protected Action<BuildOperationQueue<CommandLineToolInvocation>> newInvocationAction(final LinkerSpec spec, List<String> args) {
            final CommandLineToolInvocation invocation = invocationContext.createInvocation(
                "linking " + spec.getOutputFile().getName(), args, spec.getOperationLogger());
    
            return new Action<BuildOperationQueue<CommandLineToolInvocation>>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top