Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,775 for linuxx (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. test/linkx.go

    Cherry Zhang <******@****.***> 1572635758 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 01 20:13:05 UTC 2019
    - 741 bytes
    - Viewed (0)
  6. 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)
  7. src/debug/elf/testdata/gcc-amd64-linux-exec

    Andrew Gerrand <******@****.***> 1441330476 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 04 02:59:49 UTC 2015
    - 8.6K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/internal/objabi/head.go

    	Hdarwin
    	Hdragonfly
    	Hfreebsd
    	Hjs
    	Hlinux
    	Hnetbsd
    	Hopenbsd
    	Hplan9
    	Hsolaris
    	Hwasip1
    	Hwindows
    	Haix
    )
    
    func (h *HeadType) Set(s string) error {
    	switch s {
    	case "aix":
    		*h = Haix
    	case "darwin", "ios":
    		*h = Hdarwin
    	case "dragonfly":
    		*h = Hdragonfly
    	case "freebsd":
    		*h = Hfreebsd
    	case "js":
    		*h = Hjs
    	case "linux", "android":
    		*h = Hlinux
    	case "netbsd":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. common/scripts/setup_env.sh

    TARGET_OUT="${TARGET_OUT:-$(pwd)/out/${TARGET_OS}_${TARGET_ARCH}}"
    TARGET_OUT_LINUX="${TARGET_OUT_LINUX:-$(pwd)/out/linux_${TARGET_ARCH}}"
    
    CONTAINER_TARGET_OUT="${CONTAINER_TARGET_OUT:-/work/out/${TARGET_OS}_${TARGET_ARCH}}"
    CONTAINER_TARGET_OUT_LINUX="${CONTAINER_TARGET_OUT_LINUX:-/work/out/linux_${TARGET_ARCH}}"
    
    IMG="${IMG:-${TOOLS_REGISTRY_PROVIDER}/${PROJECT_ID}/${IMAGE_NAME}:${IMAGE_VERSION}}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top