Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for FRENCH (0.07 sec)

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

    #include "hello.h"
    
    // HACK: Ensure include root are correctly setup
    // See: https://github.com/gradle/gradle/issues/3662
    #include "winres.h"
    
    STRINGTABLE
    {
        #ifdef FRENCH
        IDS_HELLO, "${HELLO_WORLD_FRENCH}"
        #else
        IDS_HELLO, "${HELLO_WORLD}"
        #endif
    }
    """)
        ]
    
        List<SourceFile> getResourceSources() {
            getLibrarySources().subList(1, 2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

                #import <Foundation/Foundation.h>
                #include <stdio.h>
                #include "hello.h"
    
                void doGreeting()
                {
                    #ifdef FRENCH
                    bonjour();
                    #else
                    hello();
                    world();
                    #endif
                }
    
                void hello()
                {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

                        public Stream<TestTemplateInvocationContext> provideTestTemplateInvocationContexts(
                            ExtensionContext context) {
    
                            return Stream.of(invocationContext(Locale.FRENCH), invocationContext(Locale.GERMAN), invocationContext(Locale.ENGLISH));
                        }
    
                        private TestTemplateInvocationContext invocationContext(Locale locale) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/MixedLanguageIntegrationTest.groovy

                #include <iostream>
    
                void hello () {
                  std::cout << "${HelloWorldApp.HELLO_WORLD}";
                }
            """
    
            and:
            file("source", "hello", "french", "bonjour.c") << """
                #include <stdio.h>
                #include "otherProject/bonjour.h"
    
                void bonjour() {
                    printf("${HelloWorldApp.HELLO_WORLD_FRENCH}");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedLanguageHelloWorldApp.groovy

            return  [
                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
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Persian              Tag = Tag{language: faIndex, locale: faIndex}
    	Finnish              Tag = Tag{language: fiIndex, locale: fiIndex}
    	Filipino             Tag = Tag{language: filIndex, locale: filIndex}
    	French               Tag = Tag{language: frIndex, locale: frIndex}
    	CanadianFrench       Tag = Tag{language: frCAIndex, locale: frCAIndex}
    	Gujarati             Tag = Tag{language: guIndex, locale: guIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
Back to top