Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,106 for wereld (0.27 sec)

  1. src/cmd/go/testdata/script/run_hello.txt

    env GO111MODULE=off
    
    # hello world
    go run hello.go
    stderr 'hello world'
    
    -- hello.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 140 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/src/docs/userguide/chapter1.md

    # Chapter 1 - Introduction
    
    ## Hello World
    
    This is a "hello world" example:
    
        task hello {
            doLast {
                println 'Hello World!'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 163 bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

            then:
            notExecuted ":runUnbuildableTestGoogleTestExe"
            executedAndNotSkipped ":runHelloTestGoogleTestExe"
        }
    
        @ToBeFixedForConfigurationCache
        def "google test run task is properly wired to binaries check tasks and lifecycle check task"() {
            given:
            useStandardConfig()
            useConventionalSourceLocations()
            buildFile << '''
                task customHelloCheck()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionCustomTestSourceSet/groovy/src/functionalTest/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

        def setup() {
            settingsFile = new File(testProjectDir,'settings.gradle')
            buildFile = new File(testProjectDir,'build.gradle')
        }
    
        def "hello world task prints hello world"() {
            given:
            settingsFile << "rootProject.name = 'hello-world'"
            buildFile << """
                plugins {
                    id 'org.gradle.sample.helloworld'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslAssignmentIntegrationTest.kt

                assertOutputContains("Init property value: Hello world")
            }
        }
    
        @Test
        fun `can use assignment for properties in settings scripts`() {
            withSettingsWithAssignment()
    
            // Expect
            build().apply {
                assertOutputContains("Settings property value: Hello world")
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    and were resting in the shade:  however, the moment they saw her,
    they hurried back to the game, the Queen merely remarking that a
    moment's delay would cost them their lives.
    
      All the time they were playing the Queen never left off
    quarrelling with the other players, and shouting `Off with his
    head!' or `Off with her head!'  Those whom she sentenced were
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionQuickstart/groovy/src/test/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

            buildFile = new File(testProjectDir, 'build.gradle')
        }
    
        // tag::functional-test-classpath-setup-automatic[]
        def "hello world task prints hello world"() {
            given:
            settingsFile << "rootProject.name = 'hello-world'"
            buildFile << """
                plugins {
                    id 'org.gradle.sample.helloworld'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            when:
            succeeds('installDist')
    
            then:
            file('build/install/sample').exists()
    
            when:
            runViaStartScript()
    
            then:
            outputContains('Hello World!')
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative)
        def "can execute generated Unix start script using JAVA_HOME with spaces"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

            model.value == 42
    
            and:
            def streamedModels = listener1.models
            streamedModels.size() == 2
            (streamedModels[0] as GradleProject).name == "hello-world"
            (streamedModels[1] as EclipseProject).gradleProject.name == "hello-world"
    
            when:
            withIsolatedProjects()
            def model2 = runBuildAction(new ModelStreamingBuildAction()) {
                setStreamedValueListener(listener2)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/text9.txt

    {"TextPrefix":"|", "TextCodePrefix": "@"}
    -- input --
    Hello, world
     Code block here.
    -- gofmt --
    Hello, world
    
    	Code block here.
    -- text --
    |Hello, world
    |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:47 UTC 2022
    - 174 bytes
    - Viewed (0)
Back to top