Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for gotres (0.16 sec)

  1. src/net/http/transport_test.go

    	gotReq := make(chan struct{})
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		close(gotReq)
    	}))
    
    	pr, pw := io.Pipe()
    	req, err := NewRequest("POST", cst.ts.URL, pr)
    	if err != nil {
    		t.Fatal(err)
    	}
    	gotRes := make(chan struct{})
    	go func() {
    		defer close(gotRes)
    		res, err := cst.tr.RoundTrip(req)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_delta_test.go

    	// Verify that the request received has been rewritten to local file.
    	gotResp, err := downstream.Recv()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(gotResp.Resources) != 1 {
    		t.Errorf("xds proxy ecds wasm conversion number of received resource got %v want 1", len(gotResp.Resources))
    	}
    	gotEcdsConfig := &core.TypedExtensionConfig{}
    	if err := gotResp.Resources[0].Resource.UnmarshalTo(gotEcdsConfig); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/fix/gotypes.go

    package main
    
    import (
    	"go/ast"
    	"strconv"
    )
    
    func init() {
    	register(gotypesFix)
    }
    
    var gotypesFix = fix{
    	name: "gotypes",
    	date: "2015-07-16",
    	f:    gotypes,
    	desc: `Change imports of golang.org/x/tools/go/{exact,types} to go/{constant,types}`,
    }
    
    func gotypes(f *ast.File) bool {
    	fixed := fixGoTypes(f)
    	if fixGoExact(f) {
    		fixed = true
    	}
    	return fixed
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. internal/grid/connection_test.go

    	const testPayload = "Hello Grid World!"
    
    	gotResp := make(chan struct{})
    	go func() {
    		start := time.Now()
    		t.Log("Roundtrip: sending request")
    		resp, err := remoteConn.Request(context.Background(), handlerTest, []byte(testPayload))
    		t.Log("Roundtrip:", time.Since(start), resp, err)
    		gotResp <- struct{}{}
    	}()
    	<-gotCall
    	remote.debugMsg(debugKillInbound)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. helm/minio/templates/NOTES.txt

    Daryl White <******@****.***> 1664425725 -0500
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. docs/fr/docs/fastapi-people.md

    Je ne parle que quelques langues (et pas très bien 😅). Ainsi, les reviewers sont ceux qui ont le [**pouvoir d'approuver les traductions**](contributing.md#traductions){.internal-link target=_blank} de la documentation. Sans eux, il n'y aurait pas de documentation dans plusieurs autres langues.
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy_test.go

    	// Verify that the request received has been rewritten to local file.
    	gotResp, err := downstream.Recv()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(gotResp.Resources) != 1 {
    		t.Errorf("xds proxy ecds wasm conversion number of received resource got %v want 1", len(gotResp.Resources))
    	}
    	gotEcdsConfig := &core.TypedExtensionConfig{}
    	if err := gotResp.Resources[0].UnmarshalTo(gotEcdsConfig); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/release/notes.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. manifests/charts/ztunnel/templates/NOTES.txt

    Lin Sun <******@****.***> 1713406182 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 02:09:42 UTC 2024
    - 200 bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/NOTES.txt

    Frank Budinsky <******@****.***> 1626108261 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:21 UTC 2021
    - 267 bytes
    - Viewed (0)
Back to top