Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,036 for link66 (0.11 sec)

  1. src/cmd/cgo/internal/testerrors/badsym_test.go

    	cmd.Dir = godir
    	output, err := cmd.CombinedOutput()
    
    	// The build should fail, but we want it to fail because we
    	// detected the error, not because we passed a bad flag to the
    	// C linker.
    
    	if err == nil {
    		t.Errorf("go build succeeded unexpectedly")
    	}
    
    	t.Logf("%s", output)
    
    	for _, line := range bytes.Split(output, []byte("\n")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. test/reflectmethod4.go

    // run
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The linker can prune methods that are not directly called or
    // assigned to interfaces, but only if reflect.Value.Method is
    // never used. Test it here.
    
    package main
    
    import "reflect"
    
    var called = false
    
    type M int
    
    func (m M) UniqueMethodName() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 22:07:02 UTC 2016
    - 573 bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/action.go

    func (b *Builder) LinkAction(mode, depMode BuildMode, p *load.Package) *Action {
    	// Construct link action.
    	a := b.cacheAction("link", p, func() *Action {
    		a := &Action{
    			Mode:    "link",
    			Package: p,
    		}
    
    		a1 := b.CompileAction(ModeBuild, depMode, p)
    		a.Actor = ActorFunc((*Builder).link)
    		a.Deps = []*Action{a1}
    		a.Objdir = a1.Objdir
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. test/dwarf/dwarf.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // See issue 2241 and issue 1878: dwarf include stack size
    // issues in linker.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 11 21:00:48 UTC 2013
    - 268 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/build-resource-only-dll.gradle

    plugins {
        id 'windows-resources'
    }
    
    // tag::resource-only-library[]
    model {
        components {
            helloRes(NativeLibrarySpec) {
                binaries.all {
                    rcCompiler.args "/v"
                    linker.args "/noentry", "/machine:x86"
                }
                // tag::windows-resource-set[]
                sources {
                    rc {
                        source {
                            srcDirs "src/hello/rc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 690 bytes
    - Viewed (0)
  6. test/fixedbugs/issue46653.go

    // runindir
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test to verify compiler and linker handling of multiple
    // competing map.zero symbol definitions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 09 02:18:34 UTC 2021
    - 291 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            return links == null ? Collections.<MutableModelNode>emptyList() : Iterables.filter(links.values(), predicate);
        }
    
        @Override
        public int getLinkCount() {
            return links == null ? 0 : links.size();
        }
    
        @Override
        public boolean hasLink(String name, Predicate<? super MutableModelNode> predicate) {
            ModelNodeInternal linked = getLink(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/noder/export.go

    	"fmt"
    	"io"
    
    	"cmd/compile/internal/base"
    	"cmd/internal/bio"
    )
    
    func WriteExports(out *bio.Writer) {
    	var data bytes.Buffer
    
    	data.WriteByte('u')
    	writeUnifiedExport(&data)
    
    	// The linker also looks for the $$ marker - use char after $$ to distinguish format.
    	out.WriteString("\n$$B\n") // indicate binary export format
    	io.Copy(out, &data)
    	out.WriteString("\n$$\n")
    
    	if base.Debug.Export != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 21:16:32 UTC 2023
    - 683 bytes
    - Viewed (0)
  9. src/debug/pe/file_cgo_test.go

    	}
    	testDWARF(t, linktype)
    }
    
    func TestDefaultLinkerDWARF(t *testing.T) {
    	testCgoDWARF(t, linkCgoDefault)
    }
    
    func TestInternalLinkerDWARF(t *testing.T) {
    	if runtime.GOARCH == "arm64" {
    		t.Skip("internal linker disabled on windows/arm64")
    	}
    	testCgoDWARF(t, linkCgoInternal)
    }
    
    func TestExternalLinkerDWARF(t *testing.T) {
    	testCgoDWARF(t, linkCgoExternal)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 734 bytes
    - Viewed (0)
  10. src/cmd/asm/internal/flags/flags.go

    	Shared     = flag.Bool("shared", false, "generate code that can be linked into a shared library")
    	Dynlink    = flag.Bool("dynlink", false, "support references to Go symbols defined in other shared libraries")
    	Linkshared = flag.Bool("linkshared", false, "generate code that will be linked against Go shared libraries")
    	AllErrors  = flag.Bool("e", false, "no limit on number of errors reported")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top