Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,752 for linux64 (0.17 sec)

  1. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.22.0.linux-amd64.txt

    golang.org/toolchain v0.0.1-go1.22.0.linux-amd64
    written by hand
    -- .info --
    {"Version":"v0.0.1-go1.22.0.linux-amd64"}
    -- .mod --
    golang.org/toolchain
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 185 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.22.7.linux-amd64.txt

    golang.org/toolchain v0.0.1-go1.22.7.linux-amd64
    written by hand
    -- .info --
    {"Version":"v0.0.1-go1.22.7.linux-amd64"}
    -- .mod --
    golang.org/toolchain
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 185 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.18.1.linux-amd64.txt

    golang.org/toolchain v0.0.1-go1.18.1.linux-amd64
    written by hand
    -- .info --
    {"Version":"v0.0.1-go1.18.1.linux-amd64"}
    -- .mod --
    golang.org/toolchain
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 185 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.linux-mipsx.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.linux-mipsx
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.linux-mipsx"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 298 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.linux-ppc64le.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.linux-ppc64le
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.linux-ppc64le"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 302 bytes
    - Viewed (0)
  6. src/runtime/vdso_linux_mips64x.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    package runtime
    
    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/mips64/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    // see man 7 vdso : mips
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6", 0x3ae75f6}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 850 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/install_cross_gobin.txt

    env GOARCH=386
    [GOARCH:386] env GOARCH=amd64
    env GOOS=linux
    go install mycmd
    exists $GOPATH/bin/linux_$GOARCH/mycmd
    
    # cross-compile install with explicit GOBIN cannot make subdirectory
    env GOBIN=$WORK/bin
    ! go install mycmd
    ! exists $GOBIN/linux_$GOARCH
    
    # The install directory for a cross-compiled standard command should include GOARCH.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 667 bytes
    - Viewed (0)
  8. src/runtime/vdso_linux_ppc64x.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && (ppc64 || ppc64le)
    
    package runtime
    
    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/ppc64/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6.15", 0x75fcba5}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 672 bytes
    - Viewed (0)
  9. src/runtime/vdso_linux_loong64.go

    // appear
    // when that happens, see man 7 vdso : loongarch
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_5.10", 0xae78f70}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__vdso_clock_gettime", 0xd35ec75, 0x6e43a318, &vdsoClockgettimeSym},
    }
    
    // initialize to fall back to syscall
    var (
    	vdsoClockgettimeSym uintptr = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 23 21:58:55 UTC 2022
    - 793 bytes
    - Viewed (0)
  10. src/runtime/vdso_linux_s390x.go

    // license that can be found in the LICENSE file.
    
    //go:build linux && s390x
    
    package runtime
    
    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/s390x/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6.29", 0x75fcbb9}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 659 bytes
    - Viewed (0)
Back to top