Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 231 for greetings (0.81 sec)

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

            app.greetingsSources*.writeToDir(file("src/greetings"))
    
            and:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'hello'
                }
            }
            hello(NativeLibrarySpec) {
                sources {
                    cpp.lib library: 'greetings', linkage: 'static'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    			if err != nil {
    				o.UI.PrintErr(err)
    			}
    		}
    	}
    }
    
    var generateReportWrapper = generateReport // For testing purposes.
    
    // greetings prints a brief welcome and some overall profile
    // information before accepting interactive commands.
    func greetings(p *profile.Profile, ui plugin.UI) {
    	numLabelUnits := identifyNumLabelUnits(p, ui)
    	ropt, err := reportOptions(p, numLabelUnits, currentConfig())
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithDiamondDependencyHelloWorldApp.groovy

        }
    
        @Override
        SourceFile getMainSource() {
            sourceFile("cpp", "main.cpp", """
                #include <iostream>
                #include "hello.h"
                #include "greetings.h"
    
                const char* getExeHello() {
                    #ifdef FRENCH
                    return "${HELLO_WORLD_FRENCH}";
                    #else
                    return "${HELLO_WORLD}";
                    #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/HelperProcessorFixture.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    import javax.tools.StandardLocation
    
    /**
     * Generates a "Helper" class for each annotated type. The helper has a "getValue()" method that returns
     * a greeting. The greeting is composed of a message and a suffix. The message is compiled into a support
     * library. The suffix is compiled directly into the processor. This makes it easy to test different incremental
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

                gradle {
                    'one.gradle'('''
                        class Greeter { String toString() { 'Greetings from One!' } }
                        greet.doLast() { println new Greeter() }
                    ''')
    
                    'two.gradle'('''
                        class Greeter { String toString() { 'Greetings from Two!' } }
                        greet.doLast() { println new Greeter() }
                    ''')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r30/CustomToolingModelCrossVersionSpec.groovy

    import javax.inject.Inject
    
    allprojects {
        apply plugin: CustomPlugin
    }
    
    class CustomModel implements Serializable {
        static final INSTANCE = new CustomThing()
        String getValue() { 'greetings' }
        CustomThing getThing() { return INSTANCE }
        Set<CustomThing> getThings() { return [INSTANCE] }
        Map<String, CustomThing> getThingsByName() { return [child: INSTANCE] }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonMessageSerializerTest.groovy

            expect:
            def message = new ForwardInput("greetings".bytes)
            def messageResult = serialize(message, serializer)
            messageResult instanceof ForwardInput
            messageResult.bytes == message.bytes
        }
    
        def "can serialize UserResponse messages"() {
            expect:
            def message = new UserResponse("greetings")
            def messageResult = serialize(message, serializer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

            executedAndNotSkipped(":c:${language.compileTaskName}")
            outputContains('greetings')
    
            when:
            run(':c:run')
    
            then:
            skipped(":a:${language.compileTaskName}")
            skipped(":b:${language.compileTaskName}")
            skipped(":c:${language.compileTaskName}")
            outputContains('greetings')
    
            when:
            // Update the library class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

            """
    
            expect:
            succeeds "compileJava"
            file("build/generated-sources/TestAppHelper.java").text == 'class TestAppHelper {    String getValue() { return "greetings"; }}'
        }
    
        def "generated sources are cleaned up on full compilations"() {
            given:
            buildFile << """
                dependencies {
                    compileOnly project(":annotation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/groovy/buildSrc/src/main/groovy/myproject.greeting.gradle

    tasks.register("greet", com.example.GreetingTask) {
        greeting = "Hello from 'myproject.greeting' plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 110 bytes
    - Viewed (0)
Back to top