Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for linknew (0.14 sec)

  1. src/cmd/go/internal/work/exec.go

    // But -no-pie is not supported by all compilers, and clang spells it -nopie.
    func (b *Builder) gccNoPie(linker []string) string {
    	if b.gccSupportsFlag(linker, "-no-pie") {
    		return "-no-pie"
    	}
    	if b.gccSupportsFlag(linker, "-nopie") {
    		return "-nopie"
    	}
    	return ""
    }
    
    // gccSupportsFlag checks to see if the compiler supports a flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/abi.go

    		refs: make(map[string]obj.ABISet),
    	}
    }
    
    // canonicalize returns the canonical name used for a linker symbol in
    // s's maps. Symbols in this package may be written either as "".X or
    // with the package's import path already in the symbol. This rewrites
    // both to use the full path, which matches compiler-generated linker
    // symbol names.
    func (s *SymABIs) canonicalize(linksym string) string {
    	if strings.HasPrefix(linksym, `"".`) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/CompactHashMap.java

          // linked list starting from `newTable`. In general, each element from the old linked list
          // belongs to a different linked list from `newTable`. We insert each element in turn at the
          // head of its appropriate `newTable` linked list.
          while (oldNext != UNSET) {
            int entryIndex = oldNext - 1;
            int oldEntry = entries[entryIndex];
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

            given:
            def configurationCache = newConfigurationCacheFixture()
    
            and: "a project that has a provider having undeclared configuration inputs, which is linked to a task"
            buildFile("""
                abstract class MyTask extends DefaultTask {
                    @Input
                    abstract Property<String> getMyProperty();
    
                    @OutputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/runtime/traceregion.go

    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // traceRegionAlloc is a thread-safe region allocator.
    // It holds a linked list of traceRegionAllocBlock.
    type traceRegionAlloc struct {
    	lock     mutex
    	dropping atomic.Bool          // For checking invariants.
    	current  atomic.UnsafePointer // *traceRegionAllocBlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    // the groundwork for turning a given relocation into an external reloc
    // (to be applied by the external linker). For more on how relocations
    // work in general, see
    //
    //	"Linkers and Loaders", by John R. Levine (Morgan Kaufmann, 1999), ch. 7
    //
    // This is a performance-critical function for the linker; be careful
    // to avoid introducing unnecessary allocations in the main loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gc.go

    var ToolchainVersion = runtime.Version()
    
    // The Go toolchain.
    
    type gcToolchain struct{}
    
    func (gcToolchain) compiler() string {
    	return base.Tool("compile")
    }
    
    func (gcToolchain) linker() string {
    	return base.Tool("link")
    }
    
    func pkgPath(a *Action) string {
    	p := a.Package
    	ppath := p.ImportPath
    	if cfg.BuildBuildmode == "plugin" {
    		ppath = pluginPath(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/runtime/cgo.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    //go:cgo_export_static main
    
    // Filled in by runtime/cgo when linked into binary.
    
    //go:linkname _cgo_init _cgo_init
    //go:linkname _cgo_thread_start _cgo_thread_start
    //go:linkname _cgo_sys_thread_create _cgo_sys_thread_create
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyInternal.java

         */
        void setMutationValidator(MutationValidator action);
    
        /**
         * Returns the dependency locking provider linked to this resolution strategy.
         *
         * @return dependency locking provider
         */
        DependencyLockingProvider getDependencyLockingProvider();
    
        /**
         * Indicates if dependency locking is enabled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. cmd/kubelet/app/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package app
    
    // This file exists to force the desired plugin implementations to be linked.
    import (
    	"k8s.io/component-base/featuregate"
    	"k8s.io/utils/exec"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/configmap"
    	"k8s.io/kubernetes/pkg/volume/csi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top