Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 357 for xHello (0.11 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

                    "build.gradle",
                    "src/helloTest/cpp/test.cpp",
                    "src/hello/cpp/hello.cpp",
                    "src/hello/cpp/sum.cpp"
            ] as Set
            projectFile.headerFiles == [
                    "src/hello/headers/common.h",
                    "src/hello/headers/hello.h"
            ]
            projectFile.projectConfigurations.keySet() == ['debug'] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            and:
            !oldObjFile.file
            newObjFile.file
    
            and:
            try {
                assert staticLibrary("build/libs/hello/static/hello").listObjectFiles().contains(newObjFile.name)
                assert !staticLibrary("build/libs/hello/static/hello").listObjectFiles().contains(oldObjFile.name)
            } catch (UnsupportedOperationException ignored) {
                // Toolchain doesn't support this.
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

            """
    
            file("script1.gradle") << "task hello1 { doLast { println 'hello from script1' } }"
            file("script2.gradle") << "task hello2 { doLast { println 'hello from script2' } }"
    
            when:
            succeeds "hello1", "hello2"
    
            then:
            output.contains "hello from script1"
            output.contains "hello from script2"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            sharedLibrary("build/lib/main/debug/hello").assertExists()
            sharedLibrary("build/lib/main/debug/hello").assertHasDebugSymbolsFor(lib.sourceFileNamesWithoutHeaders)
            !output.contains('compiling with feature enabled')
        }
    
        @ToBeFixedForConfigurationCache
        def "can use link file as task dependency"() {
            given:
            settingsFile << "rootProject.name = 'hello'"
            def lib = new CppLib()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

                        }
                        java {
                            'Main.java'('''import com.acme.core.Hello;
    
                                public class Main {
                                    public static void main(String... args) {
                                        Hello hello = new Hello();
                                        hello.greet(args[0]);
                                    }
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsKotlinDSLIntegrationTest.groovy

            then:
            outputContains 'Hello from first plugin!'
            outputContains 'Hello from second plugin!'
        }
    
        def "can apply a plugin via buildscript and also sub-accessor plugin"() {
            String pluginVersion = '1.5'
            String firstPluginId = 'com.acme.greeter'
            new PluginBuilder(file("greeter"))
                .addPluginWithPrintlnTask('greet', 'Hello from first plugin!', firstPluginId, "FirstPlugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            and:
            executable(flavors.dir.file("build/exe/main/english/main")).assertExists()
            sharedLibrary(flavors.dir.file("build/libs/hello/shared/english/hello")).assertExists()
    
            and:
            installation(flavors.dir.file("build/install/main/english")).exec().out == "Hello world!\n"
    
            when:
            sample flavors
            run "installMainFrenchExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

                public class Hello {
                    public static void main(String... args) {
                        System.out.println("Hello World!");
                    }
                }
            """
    
        public static final String CHANGED_HELLO_WORLD = """
                public class Hello {
                    public static void main(String... args) {
                        System.out.println("Hello World with Changes!");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                    $greetTask
    
                    val greetingProp = providers.systemProperty("greeting")
                    if (greetingProp.get() == "hello") {
                        tasks.register<Greet>("greet") {
                            greeting.set("hello, hello")
                        }
                    } else {
                        tasks.register<Greet>("greet") {
                            greeting.set(greetingProp)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

            sharedLibrary("hello/build/lib/main/release/Hello").assertExists()
            sharedLibrary("hello/build/lib/main/release/Hello").assertHasStrippedDebugSymbolsFor(['greeter.o'])
            sharedLibrary("log/build/lib/main/release/Log").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top