Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for FRENCH (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            }
        }
        components {
            main { targetPlatform "$currentOs" }
        }
        binaries {
            all {
                if (targetPlatform.operatingSystem.windows) {
                    cppCompiler.define "FRENCH"
                }
            }
        }
    }
            """
            and:
            succeeds "assemble"
    
            then:
            if (os.windows) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/parse.go

    // in Accept-Language (with reasonable frequency).
    var acceptFallback = map[string]language.Language{
    	"english": _en,
    	"deutsch": _de,
    	"italian": _it,
    	"french":  _fr,
    	"*":       _mul, // defined in the spec to match all languages.
    }
    
    type tagSort struct {
    	tag []Tag
    	q   []float32
    }
    
    func (s *tagSort) Len() int {
    	return len(s.q)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                    import java.util.Locale;
    
                    public class Locales extends Suite {
                        private static final Iterable<Locale> localesToUse = Arrays.asList(Locale.FRENCH, Locale.GERMAN, Locale.ENGLISH);
    
                        public Locales(Class<?> klass) throws InitializationError {
                            super(klass, extractAndCreateRunners(klass));
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            buildFile << """
                model {
                    components {
                        hello {
                            binaries.all {
                                ${app.compilerDefine("FRENCH")}
                            }
                        }
                    }
                }
            """
    
            then:
            args("--info")
            succeeds "helloSharedLibrary"
    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. docs/en/docs/release-notes.md

    * 🌐 Add French translation for `docs/fr/docs/tutorial/query-params-str-validations.md`. PR [#4075](https://github.com/tiangolo/fastapi/pull/4075) by [@Smlep](https://github.com/Smlep).
    * 🌐 Add French translation for `docs/fr/docs/tutorial/index.md`. PR [#2234](https://github.com/tiangolo/fastapi/pull/2234) by [@JulianMaurin](https://github.com/JulianMaurin).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top