Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for FRENCH (0.12 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

            file("libs/build.gradle") << """
    apply plugin: 'cpp'
    model {
        flavors {
            english
            french
        }
        components {
            hello(NativeLibrarySpec) {
                binaries.all {
                    if (flavor == flavors.french) {
                        cppCompiler.define "FRENCH"
                    }
                }
            }
        }
    }
    """
        }
    
        private void preBuildLibrary() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            and:
            executable(flavors.dir.file("build/exe/main/french/main")).assertExists()
            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)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top