Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for i686 (0.24 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/Architecture.java

     * <table>
     *     <tr>
     *         <th>Instruction Set</th>
     *         <th>32-bit names</th>
     *         <th>64-bit names</th>
     *     </tr>
     *     <tr>
     *         <td>Intel x86</td>
     *         <td>"x86", "i386", "ia-32", "i686"</td>
     *         <td>"x86_64", "amd64", "x64", "x86-64"</td>
     *     </tr>
     *     <tr>
     *         <td>Intel Itanium</td>
     *         <td>N/A</td>
     *         <td>"ia-64", "ia64"</td>
     *     </tr>
     *     <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/Architectures.java

    import java.util.Arrays;
    import java.util.List;
    
    import static java.util.Arrays.asList;
    
    public class Architectures {
    
        public static final KnownArchitecture X86 = new KnownArchitecture("x86", "i386", "ia-32", "i686");
        public static final KnownArchitecture X86_64 = new KnownArchitecture("x86-64", "x86_64", "amd64", "x64");
        public static final KnownArchitecture IA_64 = new KnownArchitecture("ia-64", "ia64");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/link/testdata/pe-binutils/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a PE rsrc section is handled correctly (issue 39658).
    //
    // rsrc.syso is created using binutils with:
    //	{x86_64,i686}-w64-mingw32-windres -i a.rc -o rsrc_$GOARCH.syso -O coff
    // where a.rc is a text file with the following content:
    //
    // resname RCDATA {
    //   "Hello Gophers!\0",
    //   "This is a test.\0",
    // }
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 515 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ArchitecturesTest.groovy

    
    class ArchitecturesTest extends Specification {
        def "test 32-bit aliases"() {
            expect:
            Architectures.forInput(architecture).isI386()
            where:
            architecture << [ "x86", "i386", "ia-32", "i686" ]
        }
    
        def "test 64-bit aliases"() {
            expect:
            Architectures.forInput(architecture).isAmd64()
            where:
            architecture << [ "x86-64", "x86_64", "amd64", "x64" ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/link/testdata/pe-llvm/main.go

    // have been created by llvm-rc or msvc's rc.exe, which means there's the
    // @feat.00 symbol as well as split .rsrc$00 and .rsrc$01 section to deal with.
    //
    // rsrc.syso is created using llvm with:
    //    {i686,x86_64,armv7,arm64}-w64-mingw32-windres -i a.rc -o rsrc_$GOARCH.syso -O coff
    // where this windres calls into llvm-rc and llvm-cvtres. The source file,
    // a.rc, simply contains a reference to its own bytes:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. cluster/get-kube-binaries.sh

            ;;
          s390x*)
            CLIENT_ARCH="s390x"
            ;;
          *)
            echo "Unknown, unsupported architecture (${machine})." >&2
            echo "Supported architectures x86_64, i686, arm, arm64, ppc64le, s390x." >&2
            echo "Bailing out." >&2
            exit 3
            ;;
        esac
      fi
    }
    
    function md5sum_file() {
      if which md5 >/dev/null 2>&1; then
        md5 -q "$1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. cluster/get-kube.sh

        ;;
      aarch64*|arm64*)
        ;;
      ppc64le*)
        ;;
      arm*)
        ;;
      i?86*)
        ;;
      *)
        echo "Unknown, unsupported architecture (${machine})." >&2
        echo "Supported architectures x86_64, i686, arm, arm64, ppc64le." >&2
        echo "Bailing out." >&2
        exit 3
        ;;
    esac
    
    file=kubernetes.tar.gz
    release=${KUBERNETES_RELEASE:-"release/stable"}
    
    # Validate Kubernetes release version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/MultipleNativeToolChainIntegrationTest.groovy

            Assume.assumeNotNull(x86ToolChain?.buildScriptConfig, sparcToolChain?.buildScriptConfig)
    
            when:
            buildFile << """
    model {
        platforms {
            i386 {
                architecture "i386"
            }
            sparc {
                architecture "sparc"
            }
        }
        toolChains {
            ${x86ToolChain.buildScriptConfig}
            ${sparcToolChain.buildScriptConfig}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

    model {
        toolChains {
            ${toolChain.buildScriptConfig}
        }
        platforms {
            i386 { architecture 'i386' }
            amd64 { architecture 'amd64' }
        }
        flavors {
            free
            paid
        }
        components {
            someLib(NativeLibrarySpec) {
                targetPlatform "i386"
                targetPlatform "amd64"
            }
        }
    }
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultNativePlatformTest.groovy

            when:
            platform.architecture "x86"
    
            then:
            platform.architecture.name == "x86"
            platform.architecture.i386
    
            when:
            platform.architecture "i386"
    
            then:
            platform.architecture.name == "x86"
            platform.architecture.i386
        }
    
        def "can configure operating system"() {
            when:
            platform.operatingSystem "the-os"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top