Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for FRENCH (0.25 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

        @Requires(UnitTestPreconditions.NotWindows)
        @ToBeFixedForConfigurationCache
        def "can configure platform specific executables"() {
            def binDir = testDirectory.createDir("bin")
            wrapperTool(binDir, "french-c-compiler", toolChain.CCompiler, "-DFRENCH")
            wrapperTool(binDir, "static-lib", toolChain.staticLibArchiver)
            wrapperTool(binDir, "linker", toolChain.linker)
    
            when:
    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/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithLibraryUsingLibraryHelloWorldApp.groovy

        @Override
        SourceFile getMainSource() {
            sourceFile("cpp", "main.cpp", """
                #include <iostream>
                #include "hello.h"
    
                const char* getExeHello() {
                    #ifdef FRENCH
                    return "${HELLO_WORLD_FRENCH}";
                    #else
                    return "${HELLO_WORLD}";
                    #endif
                }
    
                int main () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. internal/s3select/sql/jsondata/books.json

                "pages": 265
            }
        ]
    }
    {
        "title": "The Robots of Dawn",
        "authorInfo": {
            "name": "Isaac Asimov",
            "yearRange": [1920, 1992],
            "penName": "Paul French"
        },
        "genre": "Science fiction",
        "publicationHistory": [
            {
                "year": 1983,
                "publisher": "Phantasia Press",
                "type": "Hardcover",
                "pages": 336
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            and:
            executable(flavors.dir.file("build/exe/main/french/main")).assertExists()
            sharedLibrary(flavors.dir.file("build/libs/hello/shared/french/hello")).assertExists()
    
            and:
            installation(flavors.dir.file("build/install/main/french")).exec().out == "Bonjour monde!\n"
        }
    
        @RequiresInstalledToolChain(SUPPORTS_32_AND_64)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppCallingCHelloWorldApp.groovy

        }
    
        List<SourceFile> librarySources = [
            new SourceFile("c", "hello.c", """
                #include <stdio.h>
                #include "hello.h"
    
                void DLL_FUNC sayHello() {
                    #ifdef FRENCH
                    printf("${HELLO_WORLD_FRENCH}\\n");
                    #else
                    printf("${HELLO_WORLD}\\n");
                    #endif
                    fflush(stdout);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. README.md

    # The Go Programming Language
    
    Go is an open source programming language that makes it easy to build simple,
    reliable, and efficient software.
    
    ![Gopher image](https://golang.org/doc/gopher/fiveyears.jpg)
    *Gopher image by [Renee French][rf], licensed under [Creative Commons 4.0 Attributions license][cc4-by].*
    
    Our canonical Git repository is located at https://go.googlesource.com/go.
    There is a mirror of the repository at https://github.com/golang/go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 20:14:56 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CCallingMixedCAndCppHelloWorldApp.groovy

    
        List<SourceFile> librarySources = [
            new SourceFile("cpp", "hello.cpp", """
                #include <iostream>
                #include "hello.h"
    
                void DLL_FUNC sayHello() {
                    #ifdef FRENCH
                    std::cout << "${HELLO_WORLD_FRENCH}" << std::endl;
                    #else
                    std::cout << "${HELLO_WORLD}" << std::endl;
                    #endif
                }
    """),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    // http://www.oocities.org/nodotus/hbglass.html
    // https://en.wikipedia.org/wiki/I_Can_Eat_Glass
    
    package sampler
    
    var glass = newText(`
    
    English: en: I can eat glass and it doesn't hurt me.
    French: fr: Je peux manger du verre, ça ne me fait pas mal.
    Spanish: es: Puedo comer vidrio, no me hace daño.
    
    `)
    -- glass_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithDiamondDependencyHelloWorldApp.groovy

            sourceFile("cpp", "main.cpp", """
                #include <iostream>
                #include "hello.h"
                #include "greetings.h"
    
                const char* getExeHello() {
                    #ifdef FRENCH
                    return "${HELLO_WORLD_FRENCH}";
                    #else
                    return "${HELLO_WORLD}";
                    #endif
                }
    
                int main () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top