Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 469 for linkers (0.22 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

                <tr>
                    <td>
                        <literal><link linkend="method1Id">methodName</link>()</literal>
                    </td>
                    <td>
                        <para>method description</para>
                    </td>
                </tr>
                <tr>
                    <td>
                        <literal><link linkend="method2Id">methodName</link>(p)</literal>
                    </td>
                    <td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue19764.go

    // rundir
    
    // Copyright 2017 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.
    
    // Issue 19764: test that the linker's trampoline insertion
    // pass is happy with direct calls to interface wrappers that
    // may be defined in multiple packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 02 03:25:02 UTC 2017
    - 348 bytes
    - Viewed (0)
  3. test/reflectmethod3.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.Type.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 21:19:20 UTC 2016
    - 651 bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/DuplicateBaseNamesIntegrationTest.groovy

        platforms {
            x86 {
                architecture "i386"
            }
        }
        components {
            main(NativeExecutableSpec) {
                targetPlatform "x86"
                binaries.all {
                    linker.args "-v"
                }
            }
        }
    }
                """
            then:
            succeeds "mainExecutable"
            executable("build/exe/main/main").exec().out == expectedOutput
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundRulesProcessor.java

        private final Iterable<? extends RuleBinder> binders;
        private final Transformer<? extends Collection<? extends ModelPath>, ? super ModelPath> suggestionsProvider;
    
        public UnboundRulesProcessor(Iterable<? extends RuleBinder> binders, Transformer<? extends Collection<? extends ModelPath>, ? super ModelPath> suggestionsProvider) {
            this.binders = binders;
            this.suggestionsProvider = suggestionsProvider;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    the host linker. The default value for the host linker is $CC, split
    into fields, or else "gcc". The specific host linker command line can
    be overridden using command line flags: cmd/link -extld=clang
    -extldflags='-ggdb -O3'. If any package in a build includes a .cc or
    other file compiled by the C++ compiler, the go tool will use the
    -extld option to set the host linker to the C++ compiler.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/buildid_linux.go

    // license that can be found in the LICENSE file.
    
    package cgotest
    
    // Test that we have no more than one build ID.  In the past we used
    // to generate a separate build ID for each package using cgo, and the
    // linker concatenated them all.  We don't want that--we only want
    // one.
    
    import (
    	"bytes"
    	"debug/elf"
    	"os"
    	"testing"
    )
    
    func testBuildID(t *testing.T) {
    	f, err := elf.Open("/proc/self/exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue29563.go

    // Copyright 2019 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.
    
    //go:build cgo && !windows
    
    // Issue 29563: internal linker fails on duplicate weak symbols.
    // No runtime test; just make sure it compiles.
    
    package cgotest
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 363 bytes
    - Viewed (0)
  9. test/fixedbugs/issue21120.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The compiler was using an incomplete symbol name for reflect name data,
    // permitting an invalid merge in the linker, producing an incorrect
    // exported flag bit.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:05:00 UTC 2017
    - 354 bytes
    - Viewed (0)
  10. test/fixedbugs/issue5105.go

    // rundir
    
    // Copyright 2013 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.
    
    // Issue 5105: linker segfaults on duplicate definition
    // of a type..hash.* function.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:09:55 UTC 2013
    - 275 bytes
    - Viewed (0)
Back to top