Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,036 for link66 (0.15 sec)

  1. src/cmd/link/doc.go

    	-extar ar
    		Set the external archive program (default "ar").
    		Used only for -buildmode=c-archive.
    	-extld linker
    		Set the external linker (default "clang" or "gcc").
    	-extldflags flags
    		Set space-separated flags to pass to the external linker.
    	-f
    		Ignore version mismatch in the linked archives.
    	-g
    		Disable Go package data checks.
    	-importcfg file
    		Read import configuration from file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/link3.txt

    Russ Cox <******@****.***> 1649017006 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 178 bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/link4.txt

    -- input --
    These are not links.
    
    [x
    
    [x]:
    
    [x]:https://go.dev
    
    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    [z]:	https://go.dev
    -- gofmt --
    These are not links.
    
    [x
    
    [x]:
    
    [x]:https://go.dev
    
    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 1020 bytes
    - Viewed (0)
  4. src/go/doc/comment/testdata/link5.txt

    Russ Cox <******@****.***> 1649017006 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 772 bytes
    - Viewed (0)
  5. doc/next/5-toolchain.md

    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    The linker now disallows using a `//go:linkname` directive to refer to
    internal symbols in the standard library (including the runtime) that
    are not marked with `//go:linkname` on their definitions.
    Similarly, the linker disallows references to such symbols from assembly
    code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. docs/ru/docs/external-links.md

    {% for section_name, section_content in external_links.items() %}
    
    ## {{ section_name }}
    
    {% for lang_name, lang_content in section_content.items() %}
    
    ### {{ lang_name }}
    
    {% for item in lang_content %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/cgo_stubs_ppc64x_internal_linking_test.go

    //go:build (ppc64 || ppc64le) && internal
    
    package cgotest
    
    import "testing"
    
    // If gcc is used, and linking internally, __mulsc3 and __muldc3
    // will be linked in from libgcc which make several R_PPC64_TOC16_DS
    // relocations which may not be resolvable with the internal linker.
    func test8694(t *testing.T) { t.Skip("not supported on ppc64/ppc64le with internal linking") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 631 bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/LinkerSpec.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * A high level interface to the linker, specifying what is to be linked and how.
     */
    public interface LinkerSpec extends BinaryToolSpec {
    
        List<File> getObjectFiles();
    
        void objectFiles(Iterable<File> objectFiles);
    
        List<File> getLibraries();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      T* value_;
      linked_ptr_internal link_;
    
      void depart() {
        if (link_.depart()) delete value_;
      }
    
      void capture(T* ptr) {
        value_ = ptr;
        link_.join_new();
      }
    
      template <typename U> void copy(linked_ptr<U> const* ptr) {
        value_ = ptr->get();
        if (value_)
          link_.join(&ptr->link_);
        else
          link_.join_new();
      }
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/link2.txt

    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- gofmt --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- text --
    The Go home page is https://go.dev/. It used to be https://golang.org. https://
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 997 bytes
    - Viewed (0)
Back to top