Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 814 for linking (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    `nativeLinkTest__Variant__` (e.g. `nativeLinkTest`) extends `test__Variant__ExecutableImplementation`::
    Used for linking the test component.
    This configuration contains the libraries of the test component and is therefore used when invoking the Swift linker to link it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    		of the Go toolchain itself. Use beyond that purpose is unsupported.
    	GO_EXTLINK_ENABLED
    		Whether the linker should use external linking mode
    		when using -linkmode=auto with code that uses cgo.
    		Set to 0 to disable external linking mode, 1 to enable it.
    	GIT_ALLOW_PROTOCOL
    		Defined by Git. A colon-separated list of schemes that are allowed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf_test.go

    	//   in the external linking case.
    
    	tests := []struct {
    		name                 string
    		args                 []string
    		prog                 string
    		wantSecsRO           []string
    		wantSecsROIfPresent  []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

          Class<?> cls;
          try {
            cls = classInfo.load();
          } catch (NoClassDefFoundError e) {
            // In case there were linking problems, this is probably not a class we care to test anyway.
            logger.log(Level.SEVERE, "Cannot load class " + classInfo + ", skipping...", e);
            continue;
          }
          if (!cls.isInterface()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/obj6.go

    		morestack = "runtime.morestackc"
    	case !cursym.Func().Text.From.Sym.NeedCtxt():
    		morestack = "runtime.morestack_noctxt"
    	}
    	call.To.Sym = ctxt.Lookup(morestack)
    	// When compiling 386 code for dynamic linking, the call needs to be adjusted
    	// to follow PIC rules. This in turn can insert more instructions, so we need
    	// to keep track of the start of the call (where the jump will be to) and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/symbolbuilder.go

    }
    
    // GenAddAddrPlusFunc returns a function to be called when capturing
    // a function symbol's address. In later stages of the link (when
    // address assignment is done) when doing internal linking and
    // targeting an executable, we can just emit the address of a function
    // directly instead of generating a relocation. Clients can call
    // this function (setting 'internalExec' based on build mode and target)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/sym.go

    	ctxt.traverseSyms(traverseRefs|traverseAux, func(rs *LSym) {
    		if rs.PkgIdx != goobj.PkgIdxInvalid {
    			return
    		}
    		if !ctxt.Flag_linkshared {
    			// Assign special index for builtin symbols.
    			// Don't do it when linking against shared libraries, as the runtime
    			// may be in a different library.
    			if i := goobj.BuiltinIdx(rs.Name, int(rs.ABI())); i != -1 {
    				rs.PkgIdx = goobj.PkgIdxBuiltin
    				rs.SymIdx = int32(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/runtime/runtime1.go

    		return
    	}
    	argslice = make([]string, argc)
    	for i := int32(0); i < argc; i++ {
    		argslice[i] = gostringnocopy(argv_index(argv, i))
    	}
    }
    
    func goenvs_unix() {
    	// TODO(austin): ppc64 in dynamic linking mode doesn't
    	// guarantee env[] will immediately follow argv. Might cause
    	// problems.
    	n := int32(0)
    	for argv_index(argv, argc+1+n) != nil {
    		n++
    	}
    
    	envs = make([]string, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. pkg/volume/util/atomic_writer.go

    //     the real data:
    //     <target-dir>/..data          -> ..2016_02_01_15_04_05.12345678/
    //     NOTE(claudiub): We need to create these symlinks AFTER we've finished creating and
    //     linking everything else. On Windows, if a target does not exist, the created symlink
    //     will not work properly if the target ends up being a directory.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

          Class<?> cls;
          try {
            cls = classInfo.load();
          } catch (NoClassDefFoundError e) {
            // In case there were linking problems, this is probably not a class we care to test anyway.
            logger.log(Level.SEVERE, "Cannot load class " + classInfo + ", skipping...", e);
            continue;
          }
          if (!cls.isInterface()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top