Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for bonjour (0.16 sec)

  1. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.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: Fri Aug 10 00:47:06 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/HelloWorldApp.java

    import java.util.Collections;
    import java.util.List;
    
    public abstract class HelloWorldApp extends TestApp {
        public static final String HELLO_WORLD = "Hello, World!";
        public static final String HELLO_WORLD_FRENCH = "Bonjour, Monde!";
    
        public String getEnglishOutput() {
            return HELLO_WORLD + "\n12";
        }
    
        public String getFrenchOutput() {
            return HELLO_WORLD_FRENCH + "\n12";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCHelloWorldApp.groovy

                @interface Greeter : NSObject
                    - (void)sayHello;
                @end
    
                int sum(int a, int b);
    
                #ifdef FRENCH
                #pragma message("<==== compiling bonjour.h ====>")
                #else
                #pragma message("<==== compiling hello.h ====>")
                #endif
    
                #endif
            """)
        }
    
        @Override
        SourceFile getCommonHeader() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                #define DLL_FUNC
                #endif
    
                void DLL_FUNC sayHello();
                int DLL_FUNC sum(int a, int b);
    
                #ifdef FRENCH
                #pragma message("<==== compiling bonjour.h ====>")
                #else
                #pragma message("<==== compiling hello.h ====>")
                #endif
    
                #endif
            """)
        }
    
        @Override
        SourceFile getCommonHeader() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_sampler_v1.99.99.txt

    	prefs []language.Tag
    	text  string
    }{
    	{
    		[]language.Tag{language.Make("en-US"), language.Make("fr")},
    		"Hello, world.",
    	},
    	{
    		[]language.Tag{language.Make("fr"), language.Make("en-US")},
    		"Bonjour le monde.",
    	},
    }
    
    func TestHello(t *testing.T) {
    	for _, tt := range helloTests {
    		text := Hello(tt.prefs...)
    		if text != tt.text {
    			t.Errorf("Hello(%v) = %q, want %q", tt.prefs, text, tt.text)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppHelloWorldApp.groovy

                    public:
                    void DLL_FUNC sayHello();
                };
    
                int DLL_FUNC sum(int a, int b);
    
                #ifdef FRENCH
                #pragma message("<==== compiling bonjour.h ====>")
                #else
                #pragma message("<==== compiling hello.h ====>")
                #endif
    
                #endif
            """)
        }
    
        @Override
        SourceFile getCommonHeader() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

                #define DLL_FUNC
                #endif
    
                void DLL_FUNC sayHello();
                int DLL_FUNC sum(int a, int b);
    
                #ifdef FRENCH
                #pragma message("<==== compiling bonjour.h ====>")
                #else
                #pragma message("<==== compiling hello.h ====>")
                #endif
    
                #endif
            """)
        }
    
        @Override
        SourceFile getCommonHeader() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            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)
        @ToBeFixedForConfigurationCache
        def variants() {
            given:
            sample variants
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            install.exec().out == app.englishOutput
        }
    
        static final String DEFAULT_PCH_MESSAGE="<==== compiling hello.h ====>"
        static final String FRENCH_PCH_MESSAGE="<==== compiling bonjour.h ====>"
        static final String ALTERNATE_PCH_MESSAGE="<==== compiling alternate hello.h ====>"
    
        def preCompiledHeaderComponent(String path="", String pch="common.h") {
            """
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

          },
          "french_stop": {
            "type":       "stop",
            "stopwords":  "_french_"
          },
          "french_keywords": {
            "type":       "keyword_marker",
            "keywords": ["Bonjour", "monde", "recherche"]
          },
          "french_stemmer": {
            "type":       "stemmer",
            "language":   "light_french"
          },
          "german_stop": {
            "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
Back to top