Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,064 for gbyte (0.04 sec)

  1. src/archive/tar/format.go

    	*b = block{}
    }
    
    type headerV7 [blockSize]byte
    
    func (h *headerV7) name() []byte     { return h[000:][:100] }
    func (h *headerV7) mode() []byte     { return h[100:][:8] }
    func (h *headerV7) uid() []byte      { return h[108:][:8] }
    func (h *headerV7) gid() []byte      { return h[116:][:8] }
    func (h *headerV7) size() []byte     { return h[124:][:12] }
    func (h *headerV7) modTime() []byte  { return h[136:][:12] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Bytes.java

       * @param arrays zero or more {@code byte} arrays
       * @return a single array containing all the values from the source arrays, in order
       */
      public static byte[] concat(byte[]... arrays) {
        int length = 0;
        for (byte[] array : arrays) {
          length += array.length;
        }
        byte[] result = new byte[length];
        int pos = 0;
        for (byte[] array : arrays) {
          System.arraycopy(array, 0, result, pos, array.length);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/net/writev_test.go

    		want    Buffers
    	}{
    		{
    			in:      Buffers{[]byte("foo"), []byte("bar")},
    			consume: 0,
    			want:    Buffers{[]byte("foo"), []byte("bar")},
    		},
    		{
    			in:      Buffers{[]byte("foo"), []byte("bar")},
    			consume: 2,
    			want:    Buffers{[]byte("o"), []byte("bar")},
    		},
    		{
    			in:      Buffers{[]byte("foo"), []byte("bar")},
    			consume: 3,
    			want:    Buffers{[]byte("bar")},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. test/codegen/memcombine.go

    	_ = b[8]
    	// arm64:`MOVD\sR[0-9]+,\s1\(R[0-9]+\)`,-`MOVB`,-`MOVH`,-`MOVW`
    	// amd64:`MOVQ\s[A-Z]+,\s1\([A-Z]+\)`,-`MOVB`,-`MOVW`,-`MOVL`
    	// ppc64le:`MOVD\s`,-`MOVW`
    	// ppc64:`MOVDBR\s`
    	b[1], b[2], b[3], b[4], b[5], b[6], b[7], b[8] = byte(val), byte(val>>8), byte(val>>16), byte(val>>24), byte(val>>32), byte(val>>40), byte(val>>48), byte(val>>56)
    }
    
    func store_be_byte_2(b []byte, val uint16) {
    	_ = b[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_ppc64le.go

    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPMreqn struct {
    	Multiaddr [4]byte /* in_addr */
    	Address   [4]byte /* in_addr */
    	Ifindex   int32
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. src/syscall/ztypes_linux_s390x.go

    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPMreqn struct {
    	Multiaddr [4]byte /* in_addr */
    	Address   [4]byte /* in_addr */
    	Ifindex   int32
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. internal/crypto/key.go

    	}
    	var (
    		sealingKey   [32]byte
    		encryptedKey bytes.Buffer
    	)
    	mac := hmac.New(sha256.New, extKey)
    	mac.Write(iv[:])
    	mac.Write([]byte(domain))
    	mac.Write([]byte(SealAlgorithm))
    	mac.Write([]byte(path.Join(bucket, object))) // use path.Join for canonical 'bucket/object'
    	mac.Sum(sealingKey[:0])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:28:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/marshal.go

    	"k8s.io/apimachinery/pkg/util/json"
    )
    
    var jsTrue = []byte("true")
    var jsFalse = []byte("false")
    
    func (s JSONSchemaPropsOrBool) MarshalJSON() ([]byte, error) {
    	if s.Schema != nil {
    		return json.Marshal(s.Schema)
    	}
    
    	if s.Schema == nil && !s.Allows {
    		return jsFalse, nil
    	}
    	return jsTrue, nil
    }
    
    func (s *JSONSchemaPropsOrBool) UnmarshalJSON(data []byte) error {
    	var nw JSONSchemaPropsOrBool
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 13 21:12:46 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    	switch n / 8 {
    	case 0:
    		return dst
    	case 1:
    		return append(dst, byte(x))
    	case 2:
    		y := uint16(x)
    		return append(dst, byte(y>>8), byte(y))
    	case 3:
    		y := uint16(x >> 8)
    		return append(dst, byte(y>>8), byte(y), byte(x))
    	}
    	//	case 4:
    	y := uint32(x)
    	return append(dst, byte(y>>24), byte(y>>16), byte(y>>8), byte(y))
    }
    
    // HuffmanEncodeLength returns the number of bytes required to encode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. src/syscall/ztypes_darwin_amd64.go

    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Pad_cgo_0  [4]byte
    	Iov        *Iovec
    	Iovlen     int32
    	Pad_cgo_1  [4]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
Back to top