Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,064 for gbyte (0.05 sec)

  1. 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)
  2. android/guava/src/com/google/common/primitives/UnsignedBytes.java

       *
       * @since 10.0
       */
      public static final byte MAX_POWER_OF_TWO = (byte) 0x80;
    
      /**
       * The largest value that fits into an unsigned byte.
       *
       * @since 13.0
       */
      public static final byte MAX_VALUE = (byte) 0xFF;
    
      private static final int UNSIGNED_MASK = 0xFF;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go

    	Ver             uint32
    	X__rsvd         uint32
    	Un              [16]byte
    	X_sysctl_size   [8]byte
    	X_sysctl_func   [8]byte
    	X_sysctl_parent [8]byte
    	X_sysctl_desc   [8]byte
    }
    
    type Utsname struct {
    	Sysname  [256]byte
    	Nodename [256]byte
    	Release  [256]byte
    	Version  [256]byte
    	Machine  [256]byte
    }
    
    const SizeofUvmexp = 0x278
    
    type Uvmexp struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go

    	Ver             uint32
    	X__rsvd         uint32
    	Un              [16]byte
    	X_sysctl_size   [8]byte
    	X_sysctl_func   [8]byte
    	X_sysctl_parent [8]byte
    	X_sysctl_desc   [8]byte
    }
    
    type Utsname struct {
    	Sysname  [256]byte
    	Nodename [256]byte
    	Release  [256]byte
    	Version  [256]byte
    	Machine  [256]byte
    }
    
    const SizeofUvmexp = 0x278
    
    type Uvmexp struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/LittleEndianDataInputStream.java

        byte b4 = readAndCheckByte();
        byte b5 = readAndCheckByte();
        byte b6 = readAndCheckByte();
        byte b7 = readAndCheckByte();
        byte b8 = readAndCheckByte();
    
        return Longs.fromBytes(b8, b7, b6, b5, b4, b3, b2, b1);
      }
    
      /**
       * Reads a {@code float} as specified by {@link DataInputStream#readFloat()}, except using
       * little-endian byte order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/sha.go

    }
    
    func consumeUint32(b []byte) ([]byte, uint32) {
    	_ = b[3]
    	x := uint32(b[3]) | uint32(b[2])<<8 | uint32(b[1])<<16 | uint32(b[0])<<24
    	return b[4:], x
    }
    
    func putUint64(x []byte, s uint64) {
    	_ = x[7]
    	x[0] = byte(s >> 56)
    	x[1] = byte(s >> 48)
    	x[2] = byte(s >> 40)
    	x[3] = byte(s >> 32)
    	x[4] = byte(s >> 24)
    	x[5] = byte(s >> 16)
    	x[6] = byte(s >> 8)
    	x[7] = byte(s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. src/compress/zlib/reader_test.go

    	raw        string
    	compressed []byte
    	dict       []byte
    	err        error
    }
    
    // Compare-to-golden test data was generated by the ZLIB example program at
    // https://www.zlib.net/zpipe.c
    
    var zlibTests = []zlibTest{
    	{
    		"truncated empty",
    		"",
    		[]byte{},
    		nil,
    		io.ErrUnexpectedEOF,
    	},
    	{
    		"truncated dict",
    		"",
    		[]byte{0x78, 0xbb},
    		[]byte{0x00},
    		io.ErrUnexpectedEOF,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 02:16:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. src/syscall/ztypes_netbsd_arm.go

    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    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
    	Iov        *Iovec
    	Iovlen     int32
    	Control    *byte
    	Controllen uint32
    	Flags      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  9. src/internal/syscall/unix/user_darwin.go

    	SC_GETPW_R_SIZE_MAX = 0x47
    )
    
    type Passwd struct {
    	Name   *byte
    	Passwd *byte
    	Uid    uint32 // uid_t
    	Gid    uint32 // gid_t
    	Change int64  // time_t
    	Class  *byte
    	Gecos  *byte
    	Dir    *byte
    	Shell  *byte
    	Expire int64 // time_t
    }
    
    type Group struct {
    	Name   *byte
    	Passwd *byte
    	Gid    uint32 // gid_t
    	Mem    **byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler_test.go

    					APIVersion: "apps/v1",
    					FieldsType: "FieldsV1",
    					FieldsV1:   &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:another-field":{}}}`)},
    				},
    				{
    					Manager:    "manager-2",
    					Operation:  metav1.ManagedFieldsOperationApply,
    					APIVersion: "apps/v1",
    					FieldsType: "FieldsV1",
    					FieldsV1:   &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:replicas":{}}}`)},
    					Time:       &managedFieldTime,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top