Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for TestRoundTrip (0.78 sec)

  1. src/cmd/internal/pgo/serialize_test.go

    	}
    
    	return b
    }
    
    func TestEmpty(t *testing.T) {
    	d := emptyProfile()
    	b := testRoundTrip(t, d)
    
    	// Contents should consist of only a header.
    	if string(b) != serializationHeader {
    		t.Errorf("WriteTo got %q want %q", string(b), serializationHeader)
    	}
    }
    
    func TestRoundTrip(t *testing.T) {
    	d := &Profile{
    		TotalWeight: 3,
    		NamedEdgeMap: NamedEdgeMap{
    			ByWeight: []NamedCallEdge{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/nettest/conntest.go

    			}
    		}
    	} else {
    		t.Errorf("got %T: %v, want net.Error", err, err)
    	}
    }
    
    // testRoundtrip writes something into c and reads it back.
    // It assumes that everything written into c is echoed back to itself.
    func testRoundtrip(t *testing.T, c net.Conn) {
    	t.Helper()
    	if err := c.SetDeadline(neverTimeout); err != nil {
    		t.Errorf("roundtrip SetDeadline error: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. okhttp-tls/src/test/java/okhttp3/tls/CertificatesTest.kt

     * limitations under the License.
     */
    package okhttp3.tls
    
    import org.junit.jupiter.api.Assertions.assertEquals
    import org.junit.jupiter.api.Test
    
    class CertificatesTest {
      @Test fun testRoundtrip() {
        val certificateString =
          """
          -----BEGIN CERTIFICATE-----
          MIIBmjCCAQOgAwIBAgIBATANBgkqhkiG9w0BAQsFADATMREwDwYDVQQDEwhjYXNo
          LmFwcDAeFw03MDAxMDEwMDAwMDBaFw03MDAxMDEwMDAwMDFaMBMxETAPBgNVBAMT
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. cmd/kubelet/app/options/options_test.go

    	s, err := NewKubeletServer()
    	if err != nil {
    		panic(err)
    	}
    	return s
    }
    
    // TestRoundTrip ensures that flag values from the Kubelet can be serialized
    // to arguments and then read back and have the same value. Also catches cases
    // where the default value reported by the flag is not actually allowed to be
    // specified.
    func TestRoundTrip(t *testing.T) {
    	testCases := []struct {
    		name          string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/HpackRoundTripTest.kt

      }
    
      private val bytesOut = Buffer()
      private val hpackWriter = Hpack.Writer(out = bytesOut)
    
      @ParameterizedTest
      @ArgumentsSource(StoriesTestProvider::class)
      fun testRoundTrip(story: Story) {
        assumeFalse(
          story === Story.MISSING,
          "Test stories missing, checkout git submodule",
        )
    
        val newCases = mutableListOf<Case>()
        for (case in story.cases) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/roundtrip_test.go

    	"testing"
    	"time"
    
    	"github.com/fxamacker/cbor/v2"
    	"github.com/google/go-cmp/cmp"
    )
    
    func nilPointerFor[T interface{}]() *T {
    	return nil
    }
    
    // TestRoundtrip roundtrips object serialization to interface{} and back via CBOR.
    func TestRoundtrip(t *testing.T) {
    	type modePair struct {
    		enc cbor.EncMode
    		dec cbor.DecMode
    	}
    
    	for _, tc := range []struct {
    		name      string
    		modePairs []modePair
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 21:48:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/round_trip_test.go

    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    
    	authorizationv1 "k8s.io/api/authorization/v1"
    	authorizationv1beta1 "k8s.io/api/authorization/v1beta1"
    )
    
    func TestRoundTrip(t *testing.T) {
    	f := fuzz.New()
    	seed := time.Now().UnixNano()
    	t.Logf("seed = %v", seed)
    	f.RandSource(rand.New(rand.NewSource(seed)))
    
    	for i := 0; i < 1000; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/round_trip_test.go

    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    
    	authenticationv1 "k8s.io/api/authentication/v1"
    	authenticationv1beta1 "k8s.io/api/authentication/v1beta1"
    )
    
    func TestRoundTrip(t *testing.T) {
    	f := fuzz.New()
    	seed := time.Now().UnixNano()
    	t.Logf("seed = %v", seed)
    	f.RandSource(rand.New(rand.NewSource(seed)))
    
    	for i := 0; i < 1000; i++ {
    		original := &authenticationv1.TokenReview{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. src/compress/gzip/gzip_test.go

    	}
    	if len(b) != 0 {
    		t.Fatalf("got %d bytes, want 0", len(b))
    	}
    	if err := r.Close(); err != nil {
    		t.Fatalf("Reader.Close: %v", err)
    	}
    }
    
    // TestRoundTrip tests that gzipping and then gunzipping is the identity
    // function.
    func TestRoundTrip(t *testing.T) {
    	buf := new(bytes.Buffer)
    
    	w := NewWriter(buf)
    	w.Comment = "comment"
    	w.Extra = []byte("extra")
    	w.ModTime = time.Unix(1e8, 0)
    	w.Name = "name"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:10:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/arguments_test.go

    			actual := ArgumentsFromCommand(rt.args)
    			if !reflect.DeepEqual(actual, rt.expected) {
    				t.Errorf("failed ArgumentsFromCommand:\nexpected:\n%v\nsaw:\n%v", rt.expected, actual)
    			}
    		})
    	}
    }
    
    func TestRoundtrip(t *testing.T) {
    	var tests = []struct {
    		name string
    		args []string
    	}{
    		{
    			name: "normal case",
    			args: []string{
    				"--admission-control=NamespaceLifecycle,LimitRanger",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top