Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for stadium (0.13 sec)

  1. 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)
  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/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)
  4. 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)
  5. src/main/java/org/codelibs/core/io/ResourceHandler.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.io;
    
    import java.io.InputStream;
    
    /**
     * リソースを処理するハンドラのインターフェースです。
     *
     * @author taedium
     */
    public interface ResourceHandler {
    
        /**
         * リソースを処理します。
         *
         * @param path
         *            パス
         * @param is
         *            リソースを読み込むための{@link InputStream}
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/test/java/org/codelibs/core/io/ClassTraversalTest.java

    import junit.framework.TestCase;
    
    import org.codelibs.core.jar.JarFileUtil;
    import org.codelibs.core.lang.ClassUtil;
    import org.junit.Before;
    import org.junit.Test;
    
    /**
     * @author taedium
     */
    public class ClassTraversalTest {
    
        private static int count = 0;
    
        /**
         * @throws Exception
         */
        @Before
        public void setUp() throws Exception {
            count = 0;
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/io/ResourceTraversalTest.java

    import java.net.URL;
    import java.util.zip.ZipInputStream;
    
    import junit.framework.TestCase;
    
    import org.codelibs.core.jar.JarFileUtil;
    import org.junit.Before;
    import org.junit.Test;
    
    /**
     * @author taedium
     */
    public class ResourceTraversalTest {
    
        private static int count = 0;
    
        /**
         * @throws Exception
         */
        @Before
        public void setUp() throws Exception {
            count = 0;
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. docs/de/docs/features.md

    * Um diese Standards herum entworfen, nach sorgfältigem Studium. Statt einer nachträglichen Schicht darüber.
    * Dies ermöglicht auch automatische **Client-Code-Generierung** in vielen Sprachen.
    
    ### Automatische Dokumentation
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 19:43:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top