Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,036 for link66 (0.1 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Library.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.component.Component;
    
    /**
     * A library that can be linked into or depended on by another software element.
     */
    @Incubating
    public interface Library extends Component {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 878 bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            def inputFile = targetDir.file("input.txt")
            def linkedDir = file("linked-dir").createLink(targetDir)
    
            inputFile.text = "original"
    
            buildFile << """
                task myTask {
                    def outputFile = file("build/output.txt")
                    inputs.file("linked-dir/input.txt")
                    outputs.file(outputFile)
    
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue7234_test.go

    // license that can be found in the LICENSE file.
    
    package cgotest
    
    import "testing"
    
    // This test actually doesn't have anything to do with cgo.  It is a
    // test of https://golang.org/issue/7234, a compiler/linker bug in
    // handling string constants when using -linkmode=external.  The test
    // is in this directory because we routinely test -linkmode=external
    // here.
    
    var v7234 = [...]string{"runtime/cgo"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 634 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  In addition, the suite holds a pointer to the head of the linked 
     *  list of associated CU_Test objects.  Finally, pointers to the next 
     *  and previous suites in the linked list are maintained.<br /><br />
     *
     *  Generally, the linked list includes suites which are associated with 
     *  each other in a CU_TestRegistry.  As a result, suites are run in the 
     *  order in which they are registered (see CU_add_suite()).<br /><br />
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  5. src/runtime/rt0_linux_ppc64.s

    #include "textflag.h"
    #include "asm_ppc64x.h"
    
    DEFINE_PPC64X_FUNCDESC(_rt0_ppc64_linux, _main<>)
    DEFINE_PPC64X_FUNCDESC(main, _main<>)
    
    TEXT _main<>(SB),NOSPLIT,$-8
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 847 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_find_nodeps.txt

    # Issue #46092
    # go list -find should always return a package with an empty Deps list
    
    # The linker loads implicit dependencies
    go list -find -f {{.Deps}} ./cmd
    stdout '\[\]'
    
    # Cgo translation may add imports of "unsafe", "runtime/cgo" and "syscall"
    go list -find -f {{.Deps}} ./cgo
    stdout '\[\]'
    
    # SWIG adds imports of some standard packages
    go list -find -f {{.Deps}} ./swig
    stdout '\[\]'
    
    -- go.mod --
    module listfind
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 12 14:43:27 UTC 2021
    - 737 bytes
    - Viewed (0)
  7. src/runtime/rt0_linux_s390x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT _rt0_s390x_linux(SB), NOSPLIT|NOFRAME, $0
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    
    	MOVD 0(R15), R2  // argc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 15:54:54 UTC 2017
    - 676 bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf_test.go

    		}
    	}
    }
    
    func TestElfBindNow(t *testing.T) {
    	t.Parallel()
    	testenv.MustHaveGoBuild(t)
    
    	const (
    		prog = `package main; func main() {}`
    		// with default buildmode code compiles in a statically linked binary, hence CGO
    		progC = `package main; import "C"; func main() {}`
    	)
    
    	// Notes:
    	// - for linux/amd64 and linux/arm64, for relro we'll always see a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_static.txt

    [short] skip 'links and runs binaries'
    
    # This test requires external linking. Assume that if cgo is supported
    # then external linking works.
    [!cgo] skip 'requires a C linker'
    
    # Only run on Unix systems.
    [GOOS:windows] skip
    [GOOS:plan9] skip
    
    # Ordinary build should work.
    go build
    exec ./hello
    stdout Hello
    
    # Building with -linkmode=external should not say anything about
    # runtime/cgo (issue #31544).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:03:35 UTC 2023
    - 926 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/repro_build.txt

    env GOMAXPROCS=17
    go build -a -o http17.o net/http
    cmp -q http16.o http17.o
    env GOMAXPROCS=18
    go build -a -o http18.o net/http
    cmp -q http16.o http18.o
    
    # Check that goroutine scheduling does not affect linker output.
    env GOMAXPROCS=16
    go build -a -o gofmt16.exe cmd/gofmt
    env GOMAXPROCS=17
    go build -a -o gofmt17.exe cmd/gofmt
    cmp -q gofmt16.exe gofmt17.exe
    env GOMAXPROCS=18
    go build -a -o gofmt18.exe cmd/gofmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:59:19 UTC 2023
    - 686 bytes
    - Viewed (0)
Back to top