Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for FRENCH (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/text/language/tags.go

    	Estonian             Tag = Tag(compact.Estonian)
    	Persian              Tag = Tag(compact.Persian)
    	Finnish              Tag = Tag(compact.Finnish)
    	Filipino             Tag = Tag(compact.Filipino)
    	French               Tag = Tag(compact.French)
    	CanadianFrench       Tag = Tag(compact.CanadianFrench)
    	Gujarati             Tag = Tag(compact.Gujarati)
    	Hebrew               Tag = Tag(compact.Hebrew)
    	Hindi                Tag = Tag(compact.Hindi)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIntegrationTest.groovy

            buildFile << """
                model {
                    components {
                        main(NativeExecutableSpec) {
                            binaries.all {
                                ${helloWorldApp.compilerDefine("FRENCH")}
                            }
                        }
                    }
                }
            """
    
            and:
            helloWorldApp.writeSources(file("src/main"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top