Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for i686 (0.06 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/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                config += "             platformToolChain.cCompiler.executable='i686-pc-cygwin-gcc.exe'\n";
                config += "             platformToolChain.cppCompiler.executable='i686-pc-cygwin-g++.exe'\n";
                config += "             platformToolChain.linker.executable='i686-pc-cygwin-g++.exe'\n";
                config += "             platformToolChain.assembler.executable='i686-pc-cygwin-gcc.exe'\n";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    Target: x86_64-pc-linux-gnu
    Thread model: posix
    Found candidate GCC installation: /usr/bin/../lib/gcc/i686-linux-gnu/4.8
    Found candidate GCC installation: /usr/bin/../lib/gcc/i686-linux-gnu/4.8.4
    Found candidate GCC installation: /usr/bin/../lib/gcc/i686-linux-gnu/4.9
    Found candidate GCC installation: /usr/bin/../lib/gcc/i686-linux-gnu/4.9.3
    Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/4.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/aot/tfcompile.bzl

            "//tensorflow:android_armeabi": "armv5-none-android",
            "//tensorflow:android_arm": "armv7-none-android",
            "//tensorflow:android_arm64": "aarch64-none-android",
            "//tensorflow:android_x86": "i686-none-android",
            "//tensorflow:ios": "arm64-none-ios",
            "//tensorflow:ios_x86_64": "x86_64-apple-ios",
            "//tensorflow:linux_ppc64le": "ppc64le-ibm-linux-gnu",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top