Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,036 for link66 (0.09 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/HierarchicalEclipseProject.java

         * @since 1.0-milestone-3
         */
        DomainObjectSet<? extends EclipseSourceDirectory> getSourceDirectories();
    
        /**
         * Returns the linked resources for this project.
         *
         * @return The linked resources.
         * @since 1.0-milestone-4
         */
        DomainObjectSet<? extends EclipseLinkedResource> getLinkedResources();
    
        /**
         * Returns the project directory for this project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseLinkedResourceIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    class EclipseLinkedResourceIntegrationTest extends AbstractEclipseIntegrationSpec {
    
        @ToBeFixedForConfigurationCache
        def "can reference linked resources as source folders"() {
            given:
            multiProjectWithSiblingSourceFolders()
            when:
            run("eclipse")
            then:
    
            classpath("projectA").sources[0] == "src"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactLinkedHashMap.java

       * and a node with "next" pointer equal to {@code ENDPOINT} is the last node.
       */
      @CheckForNull @VisibleForTesting transient long[] links;
    
      /** Pointer to the first node in the linked list, or {@code ENDPOINT} if there are no entries. */
      private transient int firstEntry;
    
      /** Pointer to the last node in the linked list, or {@code ENDPOINT} if there are no entries. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/link/internal/ppc64/asm.go

    func trampoline(ctxt *ld.Link, ldr *loader.Loader, ri int, rs, s loader.Sym) {
    
    	// Trampolines are created if the branch offset is too large and the linker cannot insert a call stub to handle it.
    	// For internal linking, trampolines are always created for long calls.
    	// For external linking, the linker can insert a call stub to handle a long call, but depends on having the TOC address in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentPluginTest.groovy

            with(project.tasks.linkTestExecutable) {
                it instanceof LinkExecutable
                it == testExecutable.tasks.link
                it.toolChain.get() == testExecutable.toolChain
                it.targetPlatform.get() == testExecutable.targetPlatform
                it.linkerArgs.get() == testExecutable.linker.args
            }
    
            and:
            def lifecycleTask = project.tasks.testExecutable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top