Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 7,298 for byte1 (0.07 sec)

  1. internal/ringbuffer/ring_buffer_test.go

    	}
    	buf := make([]byte, 5)
    	rb.Read(buf)
    	if rb.Length() != 3 {
    		t.Fatalf("expect len 3 bytes but got %d. r.w=%d, r.r=%d", rb.Length(), rb.w, rb.r)
    	}
    	rb.Write([]byte(strings.Repeat("abcd", 15)))
    
    	if !bytes.Equal(rb.Bytes(nil), []byte("bcd"+strings.Repeat("abcd", 15))) {
    		t.Fatalf("expect 63 ... but got %s. r.w=%d, r.r=%d", rb.Bytes(nil), rb.w, rb.r)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/LittleEndianDataInputStream.java

       * byte order.
       *
       * @return the next four bytes of the input stream, interpreted as an {@code int} in little-endian
       *     byte order
       * @throws IOException if an I/O error occurs
       */
      @CanIgnoreReturnValue // to skip some bytes
      @Override
      public int readInt() throws IOException {
        byte b1 = readAndCheckByte();
        byte b2 = readAndCheckByte();
        byte b3 = readAndCheckByte();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. cmd/streaming-signature-v4_test.go

    	tests := []testCase{
    		// Test - 1 valid buffer with CRLF.
    		{bytes.NewReader([]byte("\r\n")), nil},
    		// Test - 2 invalid buffer with no CRLF.
    		{bytes.NewReader([]byte("he")), errMalformedEncoding},
    		// Test - 3 invalid buffer with more characters.
    		{bytes.NewReader([]byte("he\r\n")), errMalformedEncoding},
    		// Test - 4 smaller buffer than expected.
    		{bytes.NewReader([]byte("h")), io.ErrUnexpectedEOF},
    	}
    	for i, tt := range tests {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/ecdh.go

    	return k, nil
    }
    
    func (k *PublicKeyECDH) Bytes() []byte { return k.bytes }
    
    func NewPrivateKeyECDH(curve string, bytes []byte) (*PrivateKeyECDH, error) {
    	nid, err := curveNID(curve)
    	if err != nil {
    		return nil, err
    	}
    	key := C._goboringcrypto_EC_KEY_new_by_curve_name(nid)
    	if key == nil {
    		return nil, fail("EC_KEY_new_by_curve_name")
    	}
    	b := bytesToBN(bytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/PrimitiveSink.java

       * {@code bytes[off + len - 1]} is the last.
       *
       * @param bytes a byte array
       * @param off the start offset in the array
       * @param len the number of bytes to write
       * @return this instance
       * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > bytes.length} or
       *     {@code len < 0}
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/nistec_test.go

    	fatalIfErr(t, err)
    
    	if !bytes.Equal(p1.Bytes(), p2.Bytes()) {
    		t.Error("P+P != 2*P")
    	}
    	if !bytes.Equal(p1.Bytes(), p3.Bytes()) {
    		t.Error("P+P != [2]P")
    	}
    	if !bytes.Equal(p1.Bytes(), p4.Bytes()) {
    		t.Error("G+G != [2]G")
    	}
    	if !bytes.Equal(p1.Bytes(), p5.Bytes()) {
    		t.Error("P+P != [N+2]P")
    	}
    	if !bytes.Equal(p1.Bytes(), p6.Bytes()) {
    		t.Error("G+G != [N+2]G")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 18:48:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. src/compress/flate/deflate_test.go

    		[]byte{0, 8, 0, 247, 255, 17, 17, 17, 17, 17, 17, 17, 17, 1, 0, 0, 255, 255},
    	},
    	{[]byte{}, 2, []byte{1, 0, 0, 255, 255}},
    	{[]byte{0x11}, 2, []byte{18, 4, 4, 0, 0, 255, 255}},
    	{[]byte{0x11, 0x12}, 2, []byte{18, 20, 2, 4, 0, 0, 255, 255}},
    	{[]byte{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11}, 2, []byte{18, 132, 2, 64, 0, 0, 0, 255, 255}},
    	{[]byte{}, 9, []byte{1, 0, 0, 255, 255}},
    	{[]byte{0x11}, 9, []byte{18, 4, 4, 0, 0, 255, 255}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/SourceSinkFactories.java

        }
    
        @Override
        public byte[] getExpected(byte[] bytes) {
          if (initialBytes == null) {
            return checkNotNull(bytes);
          } else {
            byte[] result = new byte[initialBytes.length + bytes.length];
            System.arraycopy(initialBytes, 0, result, 0, initialBytes.length);
            System.arraycopy(bytes, 0, result, initialBytes.length, bytes.length);
            return result;
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/ByteStreams.java

          }
          remaining -= read;
        }
    
        // bytes is now full
        int b = in.read();
        if (b == -1) {
          return bytes;
        }
    
        // the stream was longer, so read the rest normally
        Queue<byte[]> bufs = new ArrayDeque<>(TO_BYTE_ARRAY_DEQUE_SIZE + 2);
        bufs.add(bytes);
        bufs.add(new byte[] {(byte) b});
        return toByteArrayInternal(in, bufs, bytes.length + 1);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p384.go

    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 48-byte big-endian encoding of e.
    func (e *P384Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p384ElementLen]byte
    	return e.bytes(&out)
    }
    
    func (e *P384Element) bytes(out *[p384ElementLen]byte) []byte {
    	var tmp p384NonMontgomeryDomainFieldElement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top