Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for greetings (0.16 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            helloLibProject.projectConfigurations['debug'].includePath == filePath("src/hello/headers", "../greet/src/greetings/headers")
            greetDllProject.projectConfigurations['debug'].includePath == filePath("src/greetings/headers")
            greetLibProject.projectConfigurations['debug'].includePath == filePath("src/greetings/headers")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            and:
            executedAndNotSkipped ":greetingsSharedLibrary", ":greetingsStaticLibrary"
            sharedLibrary("build/libs/greetings/shared/greetings").assertExists()
            staticLibrary("build/libs/greetings/static/greetings").assertExists()
    
            and:
            try {
                println executable("build/exe/main/main").binaryInfo.listLinkedLibraries()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            testApp.writeSources(file("src/main"), file("src/hello"), file("src/greetings"))
    
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: "hello"
                    cpp.lib library: "greetings", linkage: "static"
                }
            }
            hello(NativeLibrarySpec) {
                sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  4. 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)
  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/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)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskCreationIntegrationTest.groovy

            given:
            buildFile << '''
                model {
                    tasks {
                        a {
                            message = 'greetings from task a'
                        }
                        a(EchoTask)
                        b(EchoTask) {
                            def taskA = $.tasks.a
                            message = taskA.message + " via task b"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 16.9K 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/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            def runGreetWith = { String greeting ->
                inDirectory('root')
                switch (systemPropertySource) {
                    case SystemPropertySource.COMMAND_LINE:
                        return configurationCacheRun('greet', "-Dgreeting=$greeting")
                    case SystemPropertySource.GRADLE_PROPERTIES:
                        file('root/gradle.properties').text = "systemProp.greeting=$greeting"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top