Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for X86_64 (0.12 sec)

  1. src/debug/pe/testdata/llvm-mingw-20211002-msvcrt-x86_64-crt2

    Than McIntosh <******@****.***> 1647953392 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 14:57:35 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    COLLECT_GCC_OPTIONS='-E' '-v' '-mtune=generic' '-march=x86-64'
     /usr/lib/gcc/x86_64-linux-gnu/4.8/cc1 -E -quiet -v -imultiarch x86_64-linux-gnu - -mtune=generic -march=x86-64 -fstack-protector -Wformat -Wformat-security
    ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
    ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../x86_64-linux-gnu/include"
    #include "..." search starts here:
    #include <...> search starts here:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommandTest.groovy

            def output = """
    Matching Java Virtual Machines (11):
        9, x86_64:\t"Java SE 9-ea"\t/Library/Java/JavaVirtualMachines/jdk-9.jdk/Contents/Home
        1.8.0, x86_64:\t"Java SE 8"\t/Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home
        1.7.0_17, x86_64:\t"Java SE 7"\t/Library/Java/JavaVirtualMachines/jdk1.7.0_17.jdk/Contents/Home
        1.7.0_07, x86_64:\t"Java SE 7"\t/Library/Java/JavaVirtualMachines/jdk1.7.0_07.jdk/Contents/Home
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/AbstractNativeUnitTestIntegrationTest.groovy

            where:
            task         | expectedArchitecture | expectedLifecycleTasks
            "test"       | X86_64               | [":test"]
            "check"      | X86_64               | [":test", ":check"]
            "build"      | X86_64               | [":test", ":check", ":build", getTasksToAssembleComponentUnderTest(X86_64), ":assemble"]
            "runTestX86" | X86                  | [":runTestX86"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/cpp/cppApplication/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        `cpp-application`
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    application {
        targetMachines = listOf(machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 306 bytes
    - Viewed (0)
  6. src/runtime/pprof/proto_test.go

    7f7d7797c000-7f7d77b36000 r-xp 00000000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    7f7d77b36000-7f7d77d36000 ---p 001ba000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    7f7d77d36000-7f7d77d3a000 r--p 001ba000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    7f7d77d3a000-7f7d77d3c000 rw-p 001be000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    7f7d77d3c000-7f7d77d41000 rw-p 00000000 00:00 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultTargetMachineFactoryTest.groovy

        def "can use created target machines in Set"() {
            def windows1 = factory.windows
            def windows2 = factory.windows
            def linux1 = factory.linux.x86_64
            def linux2 = factory.linux.x86_64
    
            expect:
            def targetMachines = [windows1, windows2, linux1, linux2] as Set
            targetMachines.size() == 2
            targetMachines == [windows1, linux1] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/cpp/cppApplication/groovy/build.gradle

    plugins {
        id 'cpp-application'
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    application {
        targetMachines = [
            machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64
        ]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 317 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/cpp/cppUnitTest/groovy/build.gradle

    plugins {
        id 'cpp-unit-test'
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    unitTest {
        targetMachines = [
            machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64
        ]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/cpp/cppLibrary/kotlin/build.gradle.kts

        }
    }
    // end::dependency-management[]
    
    // tag::configure-target-machines[]
    library {
        targetMachines = listOf(machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64)
    }
    // end::configure-target-machines[]
    
    // tag::configure-linkages[]
    library {
        linkage = listOf(Linkage.STATIC, Linkage.SHARED)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 598 bytes
    - Viewed (0)
Back to top