Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 01234567890abcdefghijklmnopqrstuvwxyz (0.1 sec)

  1. src/bufio/bufio_test.go

    	b.WriteString("abcdefghijklmnopqrstuvwxy") // hard
    	b.WriteString("z")
    	if err := b.Flush(); err != nil {
    		t.Error("WriteString", err)
    	}
    	s := "01234567890abcdefghijklmnopqrstuvwxyz"
    	if buf.String() != s {
    		t.Errorf("WriteString wants %q gets %q", s, buf.String())
    	}
    }
    
    func TestWriteStringStringWriter(t *testing.T) {
    	const BufSize = 8
    	{
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 07 01:08:54 UTC 2025
    - 51.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            long timestamp = System.currentTimeMillis();
            SmbFile file = new SmbFile(baseUrl + "shared/partial_" + timestamp + ".txt", context);
    
            // Write test data
            String content = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
            try (OutputStream out = file.openOutputStream(false)) {
                out.write(content.getBytes("UTF-8"));
            }
    
            // Read partial content
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
Back to top