Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Itanium (0.13 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            final releaseX64 = executable(variants.dir.file("build/exe/main/x64/release/main"))
            final debugIA64 = executable(variants.dir.file("build/exe/main/itanium/debug/main"))
            final releaseIA64 = executable(variants.dir.file("build/exe/main/itanium/release/main"))
    
            debugX86.arch.name == "x86"
            debugX86.assertDebugFileExists()
            debugX86.exec().out == "Hello world!\n"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/Architecture.java

     *     </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>
     *         <td>Power PC</td>
     *         <td>"ppc"</td>
     *         <td>"ppc64"</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)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/ArchitectureInternal.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.nativeplatform.platform.Architecture;
    
    public interface ArchitectureInternal extends Architecture {
        enum InstructionSet { X86, ITANIUM, PPC, SPARC, ARM }
    
        @Internal
        boolean isI386();
    
        @Internal
        boolean isAmd64();
    
        @Internal
        boolean isIa64();
    
        @Internal
        default boolean isArm() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/build.gradle

    plugins {
        id 'cpp'
    }
    
    // tag::platforms[]
    model {
        platforms {
            x86 {
                architecture "x86"
            }
            x64 {
                architecture "x86_64"
            }
            itanium {
                architecture "ia-64"
            }
        }
    }
    // end::platforms[]
    
    // tag::build-types[]
    model {
        buildTypes {
            debug
            release
        }
    }
    // end::build-types[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/PlatformDetectingTestApp.groovy

            return """
        #if defined(__x86_64__) || defined(_M_X64)
        cout << "amd64";
        #elif defined(__i386) || defined(_M_IX86)
        cout << "i386";
        #elif defined(_M_IA64)
        cout << "itanium";
        #else
        cout << "unknown";
        #endif
        cout << " ";
    
        #if defined(__linux__)
        cout << "linux";
        #elif defined(__APPLE__) && defined(__MACH__)
        cout << "os x";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    // TemplateParamQualifiedArg is used when the mangled name includes
    // both the template parameter declaration and the template argument.
    // See https://github.com/itanium-cxx-abi/cxx-abi/issues/47.
    type TemplateParamQualifiedArg struct {
    	Param AST
    	Arg   AST
    }
    
    func (tpqa *TemplateParamQualifiedArg) print(ps *printState) {
    	// We only demangle the actual template argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-ms-installer",
    				"application/x-msdownload;format=pe",
    				"application/x-msdownload;format=pe32",
    				"application/x-msdownload;format=pe64",
    				"application/x-msdownload;format=pe-itanium",
    				"application/x-msdownload;format=pe-armLE",
    				"application/x-msdownload;format=pe-arm7",
    				"application/x-msmediaview",
    				"application/x-msmetafile",
    				"application/x-msmoney",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif  // GTEST_USE_OWN_TR1_TUPLE
    
    #endif  // GTEST_HAS_TR1_TUPLE
    
    // Determines whether clone(2) is supported.
    // Usually it will only be available on Linux, excluding
    // Linux on the Itanium architecture.
    // Also see http://linux.die.net/man/2/clone.
    #ifndef GTEST_HAS_CLONE
    // The user didn't tell us, so we need to figure it out.
    
    # if GTEST_OS_LINUX && !defined(__ia64__)
    #  if GTEST_OS_LINUX_ANDROID
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif  // GTEST_USE_OWN_TR1_TUPLE
    
    #endif  // GTEST_HAS_TR1_TUPLE
    
    // Determines whether clone(2) is supported.
    // Usually it will only be available on Linux, excluding
    // Linux on the Itanium architecture.
    // Also see http://linux.die.net/man/2/clone.
    #ifndef GTEST_HAS_CLONE
    // The user didn't tell us, so we need to figure it out.
    
    # if GTEST_OS_LINUX && !defined(__ia64__)
    #  if GTEST_OS_LINUX_ANDROID
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/plugins/form-validator/sweden.js

    orp","stenungsund","stockholm","storfors","storuman","strängnäs","strömstad","strömsund","sundbyberg","sundsvall","sunne","surahammar","svalöv","svedala","svenljunga","säffle","säter","sävsjö","söderhamns","söderköping","södertälje","sölvesborg","tanum","tibro","tidaholm","tierp","timrå","tingsryd","tjörn","tomelilla","torsby","torså","tranemo","tranå","trelleborg","trollhättan","trosa","tyresö","täby","töreboda","uddevalla","ulricehamns","umeå","upplands väsby","upplands-bro","uppsala","uppvidi...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 6.4K bytes
    - Viewed (0)
Back to top