Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BytesSkipped (0.11 sec)

  1. android/guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java

        initializeData(out);
    
        byte[] data = baos.toByteArray();
    
        DataInput in = new LittleEndianDataInputStream(new ByteArrayInputStream(data));
        int bytesSkipped = 0;
        while (bytesSkipped < 10) {
          bytesSkipped += in.skipBytes(10 - bytesSkipped);
        }
    
        /* Read in various values in LITTLE ENDIAN FORMAT */
        byte[] b = new byte[2];
        in.readFully(b);
        assertEquals(-100, b[0]);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java

        initializeData(out);
    
        byte[] data = baos.toByteArray();
    
        DataInput in = new LittleEndianDataInputStream(new ByteArrayInputStream(data));
        int bytesSkipped = 0;
        while (bytesSkipped < 10) {
          bytesSkipped += in.skipBytes(10 - bytesSkipped);
        }
    
        /* Read in various values in LITTLE ENDIAN FORMAT */
        byte[] b = new byte[2];
        in.readFully(b);
        assertEquals(-100, b[0]);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. cmd/background-newdisks-heal-ops_gen.go

    		case "ItemsSkipped":
    			z.ItemsSkipped, err = dc.ReadUint64()
    			if err != nil {
    				err = msgp.WrapError(err, "ItemsSkipped")
    				return
    			}
    		case "BytesSkipped":
    			z.BytesSkipped, err = dc.ReadUint64()
    			if err != nil {
    				err = msgp.WrapError(err, "BytesSkipped")
    				return
    			}
    		case "RetryAttempts":
    			z.RetryAttempts, err = dc.ReadUint64()
    			if err != nil {
    				err = msgp.WrapError(err, "RetryAttempts")
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 20 15:42:49 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. cmd/background-newdisks-heal-ops.go

    		ObjectsTotalSize:  h.ObjectsTotalSize,
    		ItemsHealed:       h.ItemsHealed,
    		ItemsSkipped:      h.ItemsSkipped,
    		ItemsFailed:       h.ItemsFailed,
    		BytesDone:         h.BytesDone,
    		BytesSkipped:      h.BytesSkipped,
    		BytesFailed:       h.BytesFailed,
    		Bucket:            h.Bucket,
    		Object:            h.Object,
    		QueuedBuckets:     h.QueuedBuckets,
    		HealedBuckets:     h.HealedBuckets,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 26 09:58:27 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top