Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for xHello (0.12 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    		t.Errorf("response X-Modified header = %q; want %q", got, want)
    	}
    
    	io.WriteString(rwc, "Hello\n")
    	bs := bufio.NewScanner(rwc)
    	if !bs.Scan() {
    		t.Fatalf("Scan: %v", bs.Err())
    	}
    	got = bs.Text()
    	want = `backend got "Hello"`
    	if got != want {
    		t.Errorf("got %#q, want %#q", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // templates:
      //   hello: |
      //     metadata:
      //       labels:
      //         hello: world
      //
      // Then starting a pod with the `inject.istio.io/templates: hello` annotation, will result in the pod
      // being injected with the hello=world labels.
      // This is intended for advanced configuration only; most users should use the built in template
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. tests/test_application.py

    from .main import app
    
    client = TestClient(app)
    
    
    @pytest.mark.parametrize(
        "path,expected_status,expected_response",
        [
            ("/api_route", 200, {"message": "Hello World"}),
            ("/non_decorated_route", 200, {"message": "Hello World"}),
            ("/nonexistent", 404, {"detail": "Not Found"}),
        ],
    )
    def test_get_path(path, expected_status, expected_response):
        response = client.get(path)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    	e.EncodeToken(start)
    	e.EncodeToken(CharData([]byte("hello world")))
    	e.EncodeToken(EndElement{start.Name})
    	return nil
    }
    
    type MyMarshalerAttrTest struct {
    }
    
    var _ MarshalerAttr = (*MyMarshalerAttrTest)(nil)
    
    func (m *MyMarshalerAttrTest) MarshalXMLAttr(name Name) (Attr, error) {
    	return Attr{name, "hello world"}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    		b = b[len(line):]
    	}
    }
    
    func TestClientRedirectUseResponse(t *testing.T) { run(t, testClientRedirectUseResponse) }
    func testClientRedirectUseResponse(t *testing.T, mode testMode) {
    	const body = "Hello, world."
    	var ts *httptest.Server
    	ts = newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		if strings.Contains(r.URL.Path, "/other") {
    			io.WriteString(w, "wrong body")
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                    custom redJar
                }
            """.stripIndent()
    
            and:
            file("src/main/java/Hello.java") << """
                public class Hello {
                    public static void main(String... args) {
                        System.out.println("Hello World!");
                    }
                }
            """
    
            when:
            succeeds ':outgoingVariants'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// encoding described in the final Encrypted Client Hello RFC changes.
    	EncryptedClientHelloConfigList []byte
    
    	// EncryptedClientHelloRejectionVerify, if not nil, is called when ECH is
    	// rejected, in order to verify the ECH provider certificate in the outer
    	// Client Hello. If it returns a non-nil error, the handshake is aborted and
    	// that error results.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. src/time/time_test.go

    	{".s", `".s"`},
    	{"+.s", `"+.s"`},
    	{"1d", `"1d"`},
    	{"\x85\x85", `"\x85\x85"`},
    	{"\xffff", `"\xffff"`},
    	{"hello \xffff world", `"hello \xffff world"`},
    	{"\uFFFD", `"\xef\xbf\xbd"`},                                             // utf8.RuneError
    	{"\uFFFD hello \uFFFD world", `"\xef\xbf\xbd hello \xef\xbf\xbd world"`}, // utf8.RuneError
    	// overflow
    	{"9223372036854775810ns", `"9223372036854775810ns"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. src/testing/testing.go

    // ignores leading and trailing space.) These are examples of an example:
    //
    //	func ExampleHello() {
    //	    fmt.Println("hello")
    //	    // Output: hello
    //	}
    //
    //	func ExampleSalutations() {
    //	    fmt.Println("hello, and")
    //	    fmt.Println("goodbye")
    //	    // Output:
    //	    // hello, and
    //	    // goodbye
    //	}
    //
    // The comment prefix "Unordered output:" is like "Output:", but matches any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

                  request_handle:headers():add("x-lua-inbound", "hello world")
                end
      - applyTo: VIRTUAL_HOST
        match:
          context: SIDECAR_INBOUND
        patch:
          operation: MERGE
          value:
            request_headers_to_add:
            - header:
                key: x-vhost-inbound
                value: "hello world"
      - applyTo: CLUSTER
        match:
          context: SIDECAR_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top