Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 150 for X86_64 (0.11 sec)

  1. src/go/internal/gccgoimporter/gccgoinstallation.go

    	"os/exec"
    	"path/filepath"
    	"strings"
    )
    
    // Information about a specific installation of gccgo.
    type GccgoInstallation struct {
    	// Version of gcc (e.g. 4.8.0).
    	GccVersion string
    
    	// Target triple (e.g. x86_64-unknown-linux-gnu).
    	TargetTriple string
    
    	// Built-in library paths used by this installation.
    	LibPaths []string
    }
    
    // Ask the driver at the given path for information for this GccgoInstallation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/Os.kt

     * limitations under the License.
     */
    
    package common
    
    enum class Arch(val suffix: String, val nameOnLinuxWindows: String, val nameOnMac: String) {
        AMD64("64bit", "amd64", "x86_64"),
        AARCH64("aarch64", "aarch64", "aarch64");
    
        fun asName() = name.lowercase().toCapitalized()
    }
    
    enum class Os(
        val agentRequirement: String,
        val androidHome: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/platform/internal/DefaultBuildPlatform.java

            switch (architecture) {
                case i386:
                    return Architecture.X86;
                case amd64:
                    return Architecture.X86_64;
                case aarch64:
                    return Architecture.AARCH64;
            }
            throw new GradleException("Unhandled system architecture: " + architecture);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 08:12:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftApplicationTest.groovy

            return Stub(NativeVariantIdentity) {
                getName() >> "debug"
                isDebuggable() >> true
                getTargetMachine() >> targetMachine(OperatingSystemFamily.MACOS, MachineArchitecture.X86_64)
            }
        }
    
        private TargetMachine targetMachine(String os, String arch) {
            def objectFactory = TestUtil.objectFactory()
            return Stub(TargetMachine) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. build/pause/Makefile

    EXTENSION.linux =
    EXTENSION.windows = .exe
    EXTENSION := ${EXTENSION.${OS}}
    
    # The manifest command is still experimental as of Docker 18.09.3
    export DOCKER_CLI_EXPERIMENTAL=enabled
    
    TRIPLE.windows-amd64 := x86_64-w64-mingw32
    TRIPLE.linux-amd64 := x86_64-linux-gnu
    TRIPLE.linux-arm := arm-linux-gnueabihf
    TRIPLE.linux-arm64 := aarch64-linux-gnu
    TRIPLE.linux-ppc64le := powerpc64le-linux-gnu
    TRIPLE.linux-s390x := s390x-linux-gnu
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/NativePlatforms.java

            OperatingSystemInternal solaris = new DefaultOperatingSystem("solaris");
    
            ArchitectureInternal x86 = Architectures.forInput(ARCH_X86);
            ArchitectureInternal x64 = Architectures.forInput("x86_64");
            ArchitectureInternal ia64 = Architectures.forInput("ia64");
            ArchitectureInternal armv7 = Architectures.forInput("armv7");
            ArchitectureInternal aarch64 = Architectures.forInput("aarch64");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/toolchains/DefaultToolChainSelectorTest.groovy

                toolProvider
            }
    
            where:
            architecture << [
                    MachineArchitecture.X86,
                    MachineArchitecture.X86_64
            ]
        }
    
        def "can associate the compiler version #compilerVersion to #languageVersion language version"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftLibraryTest.groovy

        }
    
        private NativeVariantIdentity getIdentity() {
            return new NativeVariantIdentity("test", null, null, null, true, false, targetMachine(OperatingSystemFamily.WINDOWS, MachineArchitecture.X86_64),
                new DefaultSoftwareComponentVariant("test", AttributeTestUtil.attributesFactory().mutable()),
                new DefaultSoftwareComponentVariant("test", AttributeTestUtil.attributesFactory().mutable())
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile_main.cc

        "\n";
    
    }  // end namespace tfcompile
    }  // end namespace tensorflow
    
    int main(int argc, char** argv) {
      tensorflow::tfcompile::MainFlags flags;
    #ifndef __s390x__
      flags.target_triple = "x86_64-pc-linux";
    #endif
      flags.out_function_object = "out_model.o";
      flags.out_metadata_object = "out_helper.o";
      flags.out_header = "out.h";
      flags.entry_point = "entry";
      flags.debug_info_path_begin_marker = "";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. ci/official/README.md

    #    build. This should also match the system you're using--you cannot build
    #    the TF MacOS package from Linux.
    #      Ex. linux_x86        -- x86_64 Linux platform
    #      Ex. linux_x86_cuda   -- x86_64 Linux platform, with Nvidia CUDA support
    #      Ex. macos_arm64      -- arm64 MacOS platform
    # 3. Add modifiers. Some modifiers for local execution are:
    #      Ex. disk_cache -- Use a local cache
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top