Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for goodbye (0.23 sec)

  1. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        server.webSocket!!.finishReader()
        server.webSocket!!.close(1000, "Goodbye!")
        assertThat(client.processNextFrame()).isFalse()
        client.listener.assertClosing(1000, "Goodbye!")
        client.webSocket!!.finishReader()
        server.listener.assertClosed(1000, "Hello!")
        client.listener.assertClosed(1000, "Goodbye!")
      }
    
      @Test
      fun clientCloseThenMethodsReturnFalse() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyDocIntegrationTest.groovy

            overviewSummary.text.contains("Hello World")
    
            when:
            overviewFile.text = """
    <b>Goodbye World</b>
    """
            and:
            succeeds "groovydoc"
            then:
            result.assertTaskNotSkipped(":groovydoc")
            overviewSummary.text.contains("Goodbye World")
        }
    
        @Issue(["GRADLE-3174", "GRADLE-3463"])
        def "output from Groovydoc generation is logged"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/net/smtp/smtp_test.go

    		t.Fatalf("RCPT failed: %s", err)
    	}
    	msg := `From: ******@****.***
    To: ******@****.***
    Subject: Hooray for Go
    
    Line 1
    .Leading dot line .
    Goodbye.`
    	w, err := c.Data()
    	if err != nil {
    		t.Fatalf("DATA failed: %s", err)
    	}
    	if _, err := w.Write([]byte(msg)); err != nil {
    		t.Fatalf("Data write failed: %s", err)
    	}
    	if err := w.Close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

                archiveFileName = 'test.${fileExtension}'
    
                from('dir1') {
                    filter { 'Goodbye' }
                }
            }
            """
    
            when:
            succeeds taskName
    
            then:
            archive(file("build/test.${fileExtension}")).content('test.txt') == 'Goodbye'
    
            where:
            taskName << ['zip', 'tar']
            taskType = taskName.capitalize()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. src/text/template/parse/parse_test.go

    	{"with", "{{with .X}}hello{{end}}", noError,
    		`{{with .X}}"hello"{{end}}`},
    	{"with with else", "{{with .X}}hello{{else}}goodbye{{end}}", noError,
    		`{{with .X}}"hello"{{else}}"goodbye"{{end}}`},
    	{"with with else with", "{{with .X}}hello{{else with .Y}}goodbye{{end}}", noError,
    		`{{with .X}}"hello"{{else}}{{with .Y}}"goodbye"{{end}}{{end}}`},
    	{"with else chain", "{{with .X}}X{{else with .Y}}Y{{else with .Z}}Z{{end}}", noError,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/tasks/SwiftUnexportMainSymbolIntegrationTest.groovy

        protected SourceFileElement mainFile = getMainFile()
        protected SourceFileElement alternateFile = new SourceFileElement() {
            final SourceFile sourceFile = new SourceFile("swift", "main.swift", 'print("goodbye world!")')
        }
    
        @Override
        protected SourceFileElement getOtherFile() {
            return new SourceFileElement() {
                final SourceFile sourceFile = new SourceFile("swift", "other.swift", 'class Other {}')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                #include <stdio.h>
                #include "hello.h"
    
                int main () {
                  sayHello();
                  printf("goodbye");
                  return 0;
                }
            """)
        }
    
        String alternateOutput = "$HELLO_WORLD\ngoodbye"
    
        List<SourceFile> alternateLibrarySources = [
            new SourceFile("c", "hello.c", """
                    #include "common.h"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. 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)
  10. 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