Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Uint16 (0.71 sec)

  1. src/archive/zip/reader.go

    	}
    	b := readBuf(buf[:])
    	if sig := b.uint32(); sig != directoryHeaderSignature {
    		return ErrFormat
    	}
    	f.CreatorVersion = b.uint16()
    	f.ReaderVersion = b.uint16()
    	f.Flags = b.uint16()
    	f.Method = b.uint16()
    	f.ModifiedTime = b.uint16()
    	f.ModifiedDate = b.uint16()
    	f.CRC32 = b.uint32()
    	f.CompressedSize = b.uint32()
    	f.UncompressedSize = b.uint32()
    	f.CompressedSize64 = uint64(f.CompressedSize)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  2. internal/s3select/parquet/reader.go

    		// binary arrays) - perhaps we need to check the annotation to
    		// ensure it's UTF8 encoded.
    		value = string(val)
    	case [12]byte:
    		// TODO: This is returned for the parquet INT96 type. We just
    		// treat it same as []byte (but AWS S3 treats it as a large int)
    		// - fix this later.
    		value = string(val[:])
    	case int32:
    		value = int64(val)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 14 13:54:47 GMT 2022
    - 4.5K bytes
    - Viewed (0)
Back to top