Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 137 for roundTrip (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    	}
    }
    
    type panicOnNonReuseTransport struct {
    	Transport   http.RoundTripper
    	gotConnSeen bool
    }
    
    func (t *panicOnNonReuseTransport) RoundTrip(req *http.Request) (*http.Response, error) {
    	return t.Transport.RoundTrip(req)
    }
    
    func (t *panicOnNonReuseTransport) GotConn(info httptrace.GotConnInfo) {
    	if !t.gotConnSeen {
    		t.gotConnSeen = true
    		return
    	}
    	if !info.Reused {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/construct.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package roundtrip
    
    import (
    	"fmt"
    	"reflect"
    	"strconv"
    	"strings"
    	"time"
    
    	apimeta "k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/net/http/httptrace/trace.go

    	GetConn func(hostPort string)
    
    	// GotConn is called after a successful connection is
    	// obtained. There is no hook for failure to obtain a
    	// connection; instead, use the error from
    	// Transport.RoundTrip.
    	GotConn func(GotConnInfo)
    
    	// PutIdleConn is called when the connection is returned to
    	// the idle pool. If err is nil, the connection was
    	// successfully returned to the idle pool. If err is non-nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/math/big/ratconv_test.go

    			continue
    		}
    
    		// 2. Check f is best approximation to r.
    		if !checkIsBestApprox32(t, f, r) {
    			// Append context information.
    			t.Errorf("(input was %q)", input)
    		}
    
    		// 3. Check f->R->f roundtrip is non-lossy.
    		checkNonLossyRoundtrip32(t, f)
    
    		// 4. Check exactness using slow algorithm.
    		if wasExact := new(Rat).SetFloat64(float64(f)).Cmp(r) == 0; wasExact != exact {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants_offset.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer --use-buffer-offset %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    // Ensure constants roundtrip exactly
    
    func.func @bool() -> tensor<4xi1> {
      // CHECK-LABEL: @bool
      // CHECK: value = dense<[false, true, true, false]> : tensor<4xi1>
      %0 = "tfl.pseudo_const"() { value = dense<[false, true, true, false]> : tensor<4xi1> } : () -> tensor<4xi1>
      func.return %0 : tensor<4xi1>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    // Ensure constants roundtrip exactly
    
    func.func @bool() -> tensor<4xi1> {
      // CHECK-LABEL: @bool
      // CHECK: value = dense<[false, true, true, false]> : tensor<4xi1>
      %0 = "tfl.pseudo_const"() { value = dense<[false, true, true, false]> : tensor<4xi1> } : () -> tensor<4xi1>
      func.return %0 : tensor<4xi1>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    func (cc *http2ClientConn) decrStreamReservationsLocked() {
    	if cc.streamsReserved > 0 {
    		cc.streamsReserved--
    	}
    }
    
    func (cc *http2ClientConn) RoundTrip(req *Request) (*Response, error) {
    	return cc.roundTrip(req, nil)
    }
    
    func (cc *http2ClientConn) roundTrip(req *Request, streamf func(*http2clientStream)) (*Response, error) {
    	ctx := req.Context()
    	cs := &http2clientStream{
    		cc:                   cc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. pkg/client/tests/remotecommand_test.go

    	resp          *http.Response
    	conn          httpstream.Connection
    	err, connErr  error
    	checkResponse bool
    	called        bool
    
    	t *testing.T
    }
    
    func (u *fakeUpgrader) RoundTrip(req *http.Request) (*http.Response, error) {
    	u.called = true
    	u.req = req
    	return u.resp, u.err
    }
    
    func (u *fakeUpgrader) NewConnection(resp *http.Response) (httpstream.Connection, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/inject_test.go

    				t.Fatalf("incorrect output: got %v, expected %v", got, tt.expect)
    			}
    			roundTrip, err := mesh.ApplyProxyConfig(got, mesh.DefaultMeshConfig())
    			if err != nil {
    				t.Fatal(err)
    			}
    			if !cmp.Equal(roundTrip.GetDefaultConfig(), tt.proxy, protocmp.Transform()) {
    				t.Fatalf("round trip is not identical: got \n%+v, expected \n%+v", *roundTrip.GetDefaultConfig(), tt.proxy)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

        component[builder] = codePointString
        val url = builder.build()
        val expected = component.canonicalize(codePointString)
        val actual = component[url]
        if (expected != actual) {
          fail("Roundtrip $component $codePoint $url $expected != $actual")
        }
      }
    
      private fun testParseOriginal(
        codePoint: Int,
        codePointString: String,
        encoding: Encoding,
        component: Component,
      ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top