Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for goodbye (0.11 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

                        sourceFile.text = "goodbye world"
                        grgit.add(patterns: [ 'sourceFile' ])
                        grgit.commit {
                            message = "second commit"
                        }
                    }
                }
    
                task checkout {
                    dependsOn tag
                    doLast {
                        assert sourceFile.text == 'goodbye world'
                        grgit.checkout {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            repo.createLightWeightTag('1.0.1')
            repo.createAnnotatedTag('v1.0.1', 'Release 1.0.1')
            def anotherSource = repo.workTree.file('dir/another.txt')
            anotherSource << 'Goodbye world!'
            c2 = repo.commit('Second Commit')
            repoHead = GitVersionRef.from(repo.head)
            repoSpec = new DefaultGitVersionControlSpec()
            repoSpec.url = repo.url
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/WebSocketEcho.java

      @Override public void onOpen(WebSocket webSocket, Response response) {
        webSocket.send("Hello...");
        webSocket.send("...World!");
        webSocket.send(ByteString.decodeHex("deadbeef"));
        webSocket.close(1000, "Goodbye, World!");
      }
    
      @Override public void onMessage(WebSocket webSocket, String text) {
        System.out.println("MESSAGE: " + text);
      }
    
      @Override public void onMessage(WebSocket webSocket, ByteString bytes) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 04 11:40:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_cache_inputs.txt

    # Changes in arguments forwarded to the test should invalidate cached test
    # results.
    go test testcache -run=TestOSArgs -v hello
    ! stdout '\(cached\)'
    stdout 'hello'
    go test testcache -run=TestOSArgs -v goodbye
    ! stdout '\(cached\)'
    stdout 'goodbye'
    
    # golang.org/issue/36134: that includes the `-timeout` argument.
    go test testcache -run=TestOSArgs -timeout=20m -v
    ! stdout '\(cached\)'
    stdout '-test\.timeout[= ]20m'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/console/AbstractExecOutputIntegrationTest.groovy

    abstract class AbstractExecOutputIntegrationTest extends AbstractConsoleGroupedTaskFunctionalTest {
        private static final String EXPECTED_OUTPUT = "Hello, World!"
        private static final String EXPECTED_ERROR = "Goodbye, World!"
    
        @UnsupportedWithConfigurationCache(because = "Task.getProject() during execution")
        def "Project.javaexec output is grouped with its task output"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top