Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 814 for linking (0.16 sec)

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

    
    `__${component.name}__Executable`::
      Component Type;;
        link:{javadocPath}/org/gradle/nativeplatform/NativeExecutableSpec.html[NativeExecutableSpec]
      Native Binary Type;;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        Ty Coon, President of Vice
    
    This General Public License does not permit incorporating your program
    into proprietary programs. If your program is a subroutine library, you
    may consider it more useful to permit linking proprietary applications
    with the library. If this is what you want to do, use the GNU Library
    General Public License instead of this License.
    
    #
    
    Certain source files distributed by Oracle America, Inc. and/or its
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    		t.Skip("skipping test because test was run with FDs open")
    	}
    
    	testenv.MustHaveExec(t)
    	testenv.MustHaveGoBuild(t)
    
    	// This test runs with cgo disabled. External linking needs cgo, so
    	// it doesn't work if external linking is required.
    	testenv.MustInternalLink(t, false)
    
    	if runtime.GOOS == "windows" {
    		t.Skipf("skipping test on %q", runtime.GOOS)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            }
    
            /**
             * The environment required to execute a binary created by this toolchain.
             */
            public List<String> getRuntimeEnv() {
                // Toolchains should be linking against stuff in the standard locations
                return Collections.emptyList();
            }
    
            protected List<String> toRuntimeEnv() {
                if (pathEntries.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  5. src/runtime/traceback_test.go

    	return ttiLeaf()
    }
    
    //go:noinline
    func ttiExcluded1() *ttiResult {
    	return ttiExcluded2()
    }
    
    // ttiExcluded2 should be excluded from tracebacks. There are
    // various ways this could come up. Linking it to a "runtime." name is
    // rather synthetic, but it's easy and reliable. See issue #42754 for
    // one way this happened in real code.
    //
    //go:linkname ttiExcluded2 runtime.ttiExcluded2
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    // Prog.Type
    type ProgType int
    
    const (
    	PT_NULL    ProgType = 0 /* Unused entry. */
    	PT_LOAD    ProgType = 1 /* Loadable segment. */
    	PT_DYNAMIC ProgType = 2 /* Dynamic linking information segment. */
    	PT_INTERP  ProgType = 3 /* Pathname of interpreter. */
    	PT_NOTE    ProgType = 4 /* Auxiliary information. */
    	PT_SHLIB   ProgType = 5 /* Reserved (not used). */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/pcln.go

    		}
    	}
    	return state, compUnits, funcs
    }
    
    func emitPcln(ctxt *Link, s loader.Sym, container loader.Bitmap) bool {
    	if ctxt.Target.IsRISCV64() {
    		// Avoid adding local symbols to the pcln table - RISC-V
    		// linking generates a very large number of these, particularly
    		// for HI20 symbols (which we need to load in order to be able
    		// to resolve relocations). Unnecessarily including all of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * -linkoffline extdocURL packagelistLoc
         * <p>
         * This option is a variation of -link; they both create links to javadoc-generated documentation
         * for external referenced classes. Use the -linkoffline option when linking to a document on the web
         * when the Javadoc tool itself is "offline" -- that is, it cannot access the document through a web connection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/buildid.go

    				// other than a.buildID, b.linkActionID is only accessing
    				// build IDs of completed actions.
    				oldBuildID := a.buildID
    				a.buildID = id[1] + buildIDSeparator + id[2]
    				linkID := buildid.HashToString(b.linkActionID(a.triggers[0]))
    				if id[0] == linkID {
    					// Best effort attempt to display output from the compile and link steps.
    					// If it doesn't work, it doesn't work: reusing the cached binary is more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/test.go

    		// Normal imports of main packages are forbidden by the package loader,
    		// but this can still happen if -coverpkg patterns include main packages:
    		// covered packages are imported by pmain. Linking multiple packages
    		// compiled with '-p main' causes duplicate symbol errors.
    		// See golang.org/issue/30907, golang.org/issue/34114.
    		if p.Name == "main" && p != pmain && p != ptest {
    			split()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top