-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1427b64
commit e232eb5
Showing
12 changed files
with
755 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
from google.protobuf import descriptor as _descriptor | ||
from google.protobuf import message as _message | ||
from typing import ClassVar as _ClassVar, Optional as _Optional | ||
|
||
DESCRIPTOR: _descriptor.FileDescriptor | ||
|
||
class Blob(_message.Message): | ||
__slots__ = ("raw_size", "raw", "zlib_data", "lzma_data", "OBSOLETE_bzip2_data", "lz4_data", "zstd_data") | ||
RAW_SIZE_FIELD_NUMBER: _ClassVar[int] | ||
RAW_FIELD_NUMBER: _ClassVar[int] | ||
ZLIB_DATA_FIELD_NUMBER: _ClassVar[int] | ||
LZMA_DATA_FIELD_NUMBER: _ClassVar[int] | ||
OBSOLETE_BZIP2_DATA_FIELD_NUMBER: _ClassVar[int] | ||
LZ4_DATA_FIELD_NUMBER: _ClassVar[int] | ||
ZSTD_DATA_FIELD_NUMBER: _ClassVar[int] | ||
raw_size: int | ||
raw: bytes | ||
zlib_data: bytes | ||
lzma_data: bytes | ||
OBSOLETE_bzip2_data: bytes | ||
lz4_data: bytes | ||
zstd_data: bytes | ||
def __init__(self, raw_size: _Optional[int] = ..., raw: _Optional[bytes] = ..., zlib_data: _Optional[bytes] = ..., lzma_data: _Optional[bytes] = ..., OBSOLETE_bzip2_data: _Optional[bytes] = ..., lz4_data: _Optional[bytes] = ..., zstd_data: _Optional[bytes] = ...) -> None: ... | ||
|
||
class BlobHeader(_message.Message): | ||
__slots__ = ("type", "indexdata", "datasize") | ||
TYPE_FIELD_NUMBER: _ClassVar[int] | ||
INDEXDATA_FIELD_NUMBER: _ClassVar[int] | ||
DATASIZE_FIELD_NUMBER: _ClassVar[int] | ||
type: str | ||
indexdata: bytes | ||
datasize: int | ||
def __init__(self, type: _Optional[str] = ..., indexdata: _Optional[bytes] = ..., datasize: _Optional[int] = ...) -> None: ... |
Oops, something went wrong.