Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Itanium (0.17 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. 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)
  8. 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)
  9. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

             <match value="0x8664" type="little16" offset="244"/>
          </match>
        </magic>
      </mime-type>
      <mime-type type="application/x-msdownload;format=pe-itanium">
        <sub-class-of type="application/x-msdownload;format=pe"/>
        <magic priority="60">
          <match value="PE\000\000" type="string" offset="128">
             <match value="0x0200" type="little16" offset="132"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"st_martin":                            "\U0001f1f2\U0001f1eb",
    	"st_pierre_miquelon":                   "\U0001f1f5\U0001f1f2",
    	"st_vincent_grenadines":                "\U0001f1fb\U0001f1e8",
    	"stadium":                              "\U0001f3df\ufe0f",
    	"standing_man":                         "\U0001f9cd\u200d\u2642\ufe0f",
    	"standing_person":                      "\U0001f9cd",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
Back to top