Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 144 for X86_64 (0.19 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/ComponentWithTargetMachines.java

         *
         * <p>For example:</p>
         * <pre>
         * targetMachines = [machines.linux.x86_64, machines.windows.x86_64]
         * </pre>
         *
         * @since 5.2
         */
        SetProperty<TargetMachine> getTargetMachines();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

    model {
        platforms {
            x86 {
                architecture 'x86'
            }
            x86_64 {
                architecture 'x64'
            }
            custom {
                architecture 'foo'
            }
        }
        toolChains {
            ${toolChain.id} {
                target('x86')
                target('x86_64')
            }
            customToolchain(${toolChain.implementationClass}) {
                setTargets('custom')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/WindowsSwiftLibraryInitIntegrationTest.groovy

            dslFixtureFor(scriptDsl).getBuildFile().text.contains("targetMachines.add(machines.macOS.x86_64")
            dslFixtureFor(scriptDsl).getBuildFile().text.contains("targetMachines.add(machines.linux.x86_64")
    
            and:
            commonFilesGenerated(scriptDsl)
    
            and:
            succeeds("build")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/WindowsSwiftApplicationInitIntegrationTest.groovy

            dslFixtureFor(scriptDsl).getBuildFile().text.contains("targetMachines.add(machines.macOS.x86_64")
            dslFixtureFor(scriptDsl).getBuildFile().text.contains("targetMachines.add(machines.linux.x86_64")
    
            and:
            commonFilesGenerated(scriptDsl)
    
            and:
            succeeds("build")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            given:
            buildFile << """
                apply plugin: 'cpp-application'
    
                application.targetMachines = [machines.${currentHostOperatingSystemFamilyDsl}.x86, machines.${currentHostOperatingSystemFamilyDsl}.x86_64]
            """
    
            def app = new CppApp()
            app.writeToProject(testDirectory)
            file('src/main/headers/ignore.cpp') << 'broken!'
            file('src/main/cpp/ignore.h') << 'broken!'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  6. src/debug/pe/symbols_test.go

    	// corresponds to the mingw "crt2.o" object. The object itself was
    	// built using an x86_64 HOST=linux TARGET=windows clang cross
    	// compiler based on LLVM 13. More build details can be found at
    	// https://github.com/mstorsjo/llvm-mingw/releases.
    	f, err := Open("testdata/llvm-mingw-20211002-msvcrt-x86_64-crt2")
    	if err != nil {
    		t.Errorf("open failed with %v", err)
    	}
    	defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/OtoolBinaryInfo.groovy

            def archString = lines.last().split()[1]
    
            switch (archString) {
                case "I386":
                    return Architectures.forInput("x86")
                case "X86_64":
                    return Architectures.forInput("x86_64")
                default:
                    throw new RuntimeException("Cannot determine architecture for ${archString}")
            }
        }
    
        List<String> listObjectFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. samples/bookinfo/src/details/Gemfile.lock

    GEM
      remote: https://rubygems.org/
      specs:
        webrick (1.8.1)
    
    PLATFORMS
      aarch64-linux
      ruby
      x86_64-linux
    
    DEPENDENCIES
      webrick (~> 1.7)
    
    BUNDLED WITH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 18:42:05 UTC 2024
    - 171 bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/JvmInstallationMetadataMatcherTest.groovy

        }
    
        private static Map<String, String> semeruJvm11() {
            ['java.home': "java-home",
             'java.version': "11.0.17",
             'java.vendor': "IBM Corporation",
             'os.arch': "x86_64",
             'java.vm.name': "Eclipse OpenJ9 VM",
             'java.vm.version': "openj9-0.35.0",
             'java.vm.vendor': "Eclipse OpenJ9",
             'java.runtime.name': "IBM Semeru Runtime Open Edition",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. release/downloadIstioCandidate.sh

    # You can pass variables on the command line to download a specific version
    # or to override the processor architecture. For example, to download
    # Istio 1.6.8 for the x86_64 architecture and linux OS,
    # run curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.6.8 TARGET_ARCH=x86_64 TARGET_OS=Linux sh -.
    
    set -e
    
    # Determines the operating system.
    OS="${TARGET_OS:-$(uname)}"
    if [ "${OS}" = "Darwin" ] ; then
      OSEXT="osx"
    else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top