Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for TestRoundTrip (0.2 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. 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)
  5. 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)
  6. 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)
  7. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

            assertEquals(2, target.getVersioning().getSnapshot().getBuildNumber());
        }
        /*-- END test "groupId/artifactId/version" metadata ---*/
    
        @Test
        void testRoundtrip() throws Exception {
            System.setProperty(XMLInputFactory.class.getName(), WstxInputFactory.class.getName());
            System.setProperty(XMLOutputFactory.class.getName(), WstxOutputFactory.class.getName());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/encoding/xml/xml_test.go

    		t.Fatalf("lost tokens: %#v", tokens)
    	}
    }
    
    func TestRoundTrip(t *testing.T) {
    	tests := map[string]string{
    		"trailing colon":         `<foo abc:="x"></foo>`,
    		"comments in directives": `<!ENTITY x<!<!-- c1 [ " -->--x --> > <e></e> <!DOCTYPE xxx [ x<!-- c2 " -->--x ]>`,
    	}
    	for name, input := range tests {
    		t.Run(name, func(t *testing.T) { testRoundTrip(t, input) })
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/crypto/internal/mlkem768/mlkem768_test.go

    		exp := new(big.Int).Exp(ΞΆ, big.NewInt(int64(BitRev7(uint8(k)))*2+1), q)
    		if big.NewInt(int64(gamma)).Cmp(exp) != 0 {
    			t.Errorf("gammas[%d] = %v, expected %v", k, gamma, exp)
    		}
    	}
    }
    
    func TestRoundTrip(t *testing.T) {
    	dk, err := GenerateKey()
    	if err != nil {
    		t.Fatal(err)
    	}
    	c, Ke, err := Encapsulate(dk.EncapsulationKey())
    	if err != nil {
    		t.Fatal(err)
    	}
    	Kd, err := Decapsulate(dk, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pkg/api/testing/unstructured_test.go

    		t.Errorf("FromUnstructured failed: %v", err)
    		return
    	}
    
    	if !apiequality.Semantic.DeepEqual(item, newObj) {
    		t.Errorf("Object changed, diff: %v", cmp.Diff(item, newObj))
    	}
    }
    
    func TestRoundTrip(t *testing.T) {
    	for gvk := range legacyscheme.Scheme.AllKnownTypes() {
    		if nonRoundTrippableTypes.Has(gvk.Kind) {
    			continue
    		}
    		if gvk.Version == runtime.APIVersionInternal {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top