Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 814 for linking (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

            "@llvm-project//mlir:ArithOpsTdFiles",
            "@llvm-project//mlir:FuncTdFiles",
        ],
    )
    
    # This is a separate library so that external passes can link only this library
    # without linking any of the other tensorflow passes.
    gentbl_cc_library(
        name = "lower_tf_inc_gen",
        compatible_with = get_compatible_with_portable(),
        tbl_outs = [
            (
                ["-gen-rewriters"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    	//	func main() {
    	//		runtime.SetFinalizer(Foo, nil)
    	//	}
    	// The relevant segments are: noptrdata, data, bss, noptrbss.
    	// We cannot assume they are in any order or even contiguous,
    	// due to external linking.
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.noptrdata <= uintptr(p) && uintptr(p) < datap.enoptrdata ||
    			datap.data <= uintptr(p) && uintptr(p) < datap.edata ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

    import java.util.List;
    import java.util.Map;
    
    /**
     * Abstract class for all test tasks.
     *
     * <ul>
     *     <li>Support for test listeners</li>
     *     <li>Support for reporting</li>
     *     <li>Support for report linking in the console output</li>
     * </ul>
     *
     * <p><b>Note:</b> This abstract class is not intended for implementation by build script or plugin authors.
     *
     * @since 4.4
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    This may break tools that scrape details from the plain console output.
    
    [[rel:4.6:native_task_api_changes]]
    === [4.6] Changes to the APIs of native tasks related to compilation, linking and installation
    
    Many tasks related to compiling, linking and installing native libraries and applications have been converted to the Provider API so that they support <<lazy_configuration.adoc#lazy_configuration,lazy configuration>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/runtime/asm_arm.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // _rt0_arm is common startup code for most ARM systems when using
    // internal linking. This is the entry point for the program from the
    // kernel for an ordinary -buildmode=exe program. The stack holds the
    // number of arguments and the C-style argv.
    TEXT _rt0_arm(SB),NOSPLIT|NOFRAME,$0
    	MOVW	(R13), R0	// argc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  6. src/syscall/exec_linux_test.go

    	// and it must be statically linked.
    	testenv.MustHaveGoBuild(t)
    	if platform.MustLinkExternal(runtime.GOOS, runtime.GOARCH, false) {
    		t.Skipf("skipping: can't build static binary because %s/%s requires external linking", runtime.GOOS, runtime.GOARCH)
    	}
    	x := filepath.Join(d, "syscall.test")
    	t.Cleanup(func() {
    		// If the subprocess fails to unshare the parent directory, force-unmount it
    		// so that the test can clean it up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/pe.go

    	case "386", "arm":
    		ctxt.Out.Write32(uint32(addr))
    	case "amd64", "arm64":
    		ctxt.Out.Write64(addr)
    	}
    	return sect
    }
    
    // emitRelocations emits relocation entries for go.o in external linking.
    func (f *peFile) emitRelocations(ctxt *Link) {
    	for ctxt.Out.Offset()&7 != 0 {
    		ctxt.Out.Write8(0)
    	}
    
    	ldr := ctxt.loader
    
    	// relocsect relocates symbols from first in section sect, and returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcshared/cshared_test.go

    }
    
    func TestGo2C2Go(t *testing.T) {
    	switch GOOS {
    	case "darwin", "ios", "windows":
    		// Non-ELF shared libraries don't support the multiple
    		// copies of the runtime package implied by this test.
    		t.Skipf("linking c-shared into Go programs not supported on %s; issue 29061, 49457", GOOS)
    	case "android":
    		t.Skip("test fails on android; issue 29087")
    	}
    	globalSkip(t)
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_386.s

    TEXT runtime·setldt(SB),NOSPLIT,$32
    	MOVL	base+4(FP), DX
    
    #ifdef GOOS_android
    	// Android stores the TLS offset in runtime·tls_g.
    	SUBL	runtime·tls_g(SB), DX
    	MOVL	DX, 0(DX)
    #else
    	/*
    	 * When linking against the system libraries,
    	 * we use its pthread_create and let it set up %gs
    	 * for us.  When we do that, the private storage
    	 * we get is not at 0(GS), but -4(GS).
    	 * To insulate the rest of the tool chain from this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

      ASSERT_TRUE(o == nullptr);  // It is unsafe to move memory TF might not own.
      TF_DeleteTensor(t);
      EXPECT_TRUE(deallocator_called);
    }
    
    TEST(CAPI, LibraryLoadFunctions) {
      // TODO(b/73318067): Fix linking for the GPU test generated by the
      // tf_cuda_cc_test() bazel rule and remove the next line.
      if (!GPUDeviceName().empty()) return;
    
    #if !defined(TENSORFLOW_NO_SHARED_OBJECTS)
      {
        // Load the library.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top