Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for bonjour (0.17 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/MixedLanguageIntegrationTest.groovy

                extern "C" {
                    #include "otherProject/bonjour.h"
                }
    
                int main () {
                  hello();
                  bonjour();
                  return 0;
                }
            """
    
            and:
            file("include", "otherProject", "bonjour.h") << """
                void bonjour();
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

                    [stdout writeData: strData];
                }"""),
    
                    sourceFile("c", "clib.c", """
                #include <stdio.h>
                #include "hello.h"
    
                void bonjour() {
                    printf("Bonjour, Monde!\\n");
                }
            """),
                    sourceFile("cpp", "cpplib.cpp", """
                #include "hello.h"
                #include <iostream>
                using namespace std;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/fr/protwords.txt

    Bonjour
    monde
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jun 11 12:51:31 UTC 2016
    - 23 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/application/kotlin/src/main/java/org/gradle/sample/Main.java

            if (System.getProperty("greeting.language").equals("en")) {
                System.out.println("Greetings from the sample application.");
            } else {
                System.out.println("Bonjour, monde!");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/variants/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)
  6. platforms/documentation/docs/src/snippets/java/application/groovy/src/main/java/org/gradle/sample/Main.java

            if (System.getProperty("greeting.language").equals("en")) {
                System.out.println("Greetings from the sample application.");
            } else {
                System.out.println("Bonjour, monde!");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.0.txt

    // license that can be found in the LICENSE file.
    
    // Translations by Google Translate.
    
    package sampler
    
    var hello = newText(`
    
    English: en: Hello, world.
    French: fr: Bonjour le monde.
    Spanish: es: Hola Mundo.
    
    `)
    -- hello_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.1.txt

    // license that can be found in the LICENSE file.
    
    // Translations by Google Translate.
    
    package sampler
    
    var hello = newText(`
    
    English: en: Hello, world.
    French: fr: Bonjour le monde.
    Spanish: es: Hola Mundo.
    
    `)
    -- hello_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 17:49:01 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    // license that can be found in the LICENSE file.
    
    // Translations by Google Translate.
    
    package sampler
    
    var hello = newText(`
    
    English: en: Hello, world.
    French: fr: Bonjour le monde.
    Spanish: es: Hola Mundo.
    
    `)
    -- hello_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
Back to top