Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 357 for xHello (0.27 sec)

  1. src/net/smtp/smtp.go

    // Close closes the connection.
    func (c *Client) Close() error {
    	return c.Text.Close()
    }
    
    // hello runs a hello exchange if needed.
    func (c *Client) hello() error {
    	if !c.didHello {
    		c.didHello = true
    		err := c.ehlo()
    		if err != nil {
    			c.helloError = c.helo()
    		}
    	}
    	return c.helloError
    }
    
    // Hello sends a HELO or EHLO to the server as the given host name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server_test.go

    		{
    			probe: `{"/app-health/hello-world/readyz": {"httpGet": {"path": "/hello/sunnyvale", "port": "container-port-dontknow"}}}`,
    			err:   "must be int type",
    		},
    		// A valid input.
    		{
    			probe: `{"/app-health/hello-world/readyz": {"httpGet": {"path": "/hello/sunnyvale", "port": 8080}},` +
    				`"/app-health/business/livez": {"httpGet": {"path": "/buisiness/live", "port": 9090}}}`,
    		},
    		// long request timeout
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

        serverIpv4.enqueue(
          MockResponse(body = "unexpected call to IPv4"),
        )
        serverIpv6.enqueue(
          MockResponse(body = "hello from IPv6"),
        )
    
        val call = client.newCall(Request(url))
        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("hello from IPv6")
    
        // In the process we made one successful connection attempt.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server.go

    		c.sendAlert(alertHandshakeFailure)
    		return errors.New("tls: initial handshake had non-empty renegotiation extension")
    	}
    
    	hs.hello.extendedMasterSecret = hs.clientHello.extendedMasterSecret
    	hs.hello.secureRenegotiationSupported = hs.clientHello.secureRenegotiationSupported
    	hs.hello.compressionMethod = compressionNone
    	if len(hs.clientHello.serverName) > 0 {
    		c.serverName = hs.clientHello.serverName
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

                package org.gradle.test;
                public class BuildClass {
                    public String message() { return "hello world"; }
                }
            '''
            builder.buildJar(jarFile)
    
            then:
            succeeds("hello")
            outputContains("hello world")
    
            when:
            builder = artifactBuilder()
            builder.sourceFile("org/gradle/test/BuildClass.java").createFile().text = '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/io/io_test.go

    	rb := new(Buffer)
    	wb := new(Buffer)
    	rb.WriteString("hello, world.")
    	CopyN(wb, rb, 5)
    	if wb.String() != "hello" {
    		t.Errorf("CopyN did not work properly")
    	}
    }
    
    func TestCopyNReadFrom(t *testing.T) {
    	rb := new(Buffer)
    	wb := new(bytes.Buffer) // implements ReadFrom.
    	rb.WriteString("hello")
    	CopyN(wb, rb, 5)
    	if wb.String() != "hello" {
    		t.Errorf("CopyN did not work properly")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyAssignmentIntegrationTest.groovy

            "T = T"                                         | "MyObject" | 'new MyObject("hello")'                  | "hello"
            "T = Provider<T>"                               | "MyObject" | 'provider { new MyObject("hello") }'     | unsupportedWithCause("Cannot cast object")
            "String = Object"                               | "String"   | 'new MyObject("hello")'                  | "hello"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 14:39:49 UTC 2023
    - 36.6K bytes
    - Viewed (0)
  8. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

        )
        val response = client.newCall(request().build()).execute()
        val responseBody = response.body
        assertThat(responseBody.string(), "Expected response body to be valid")
          .isEqualTo("Hello, Hello, Hello")
        responseBody.close()
        networkLogs
          .assertLogEqual("--> GET $url http/1.1")
          .assertLogEqual("Host: $host")
          .assertLogEqual("Connection: Keep-Alive")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  9. istioctl/pkg/validate/validate_test.go

    items:
    - apiVersion: apps/v1
      kind: Deployment
      metadata:
        labels:
          app: hello
          version: v1
        name: hello-v1
      spec:
        replicas: 1
        template:
          metadata:
            labels:
              app: hello
              version: v1
          spec:
            containers:
            - name: hello
              image: istio/examples-hello
              imagePullPolicy: IfNotPresent
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

            createDirs("hello", "log")
            settingsFile << """
                rootProject.name = 'app'
                include 'hello', 'log'
            """
            buildFile << """
                apply plugin: 'swift-application'
                dependencies {
                    implementation project(':hello')
                }
                project(':hello') {
                    apply plugin: 'swift-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
Back to top