Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to latest ni-apis and add regenerated stubs for array.proto #1062

Merged
merged 1 commit into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
@typing.final
class Double2DArray(google.protobuf.message.Message):
"""---------------------------------------------------------------------
Defines a 2D array of double values. The 2D array is stored as
a repeated double, a 1D array. It is stored in row major order.
Defines a 2D array of values. The 2D array is stored as a repeated field of
the appropriate element type, a 1D array. It is stored in row major order.

Example:
Repeated Double: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

rows: 2
columns: 5

Expand Down Expand Up @@ -59,3 +60,25 @@ class Double2DArray(google.protobuf.message.Message):
def ClearField(self, field_name: typing.Literal["columns", b"columns", "data", b"data", "rows", b"rows"]) -> None: ...

global___Double2DArray = Double2DArray

@typing.final
class String2DArray(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor

ROWS_FIELD_NUMBER: builtins.int
COLUMNS_FIELD_NUMBER: builtins.int
DATA_FIELD_NUMBER: builtins.int
rows: builtins.int
columns: builtins.int
@property
def data(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
def __init__(
self,
*,
rows: builtins.int = ...,
columns: builtins.int = ...,
data: collections.abc.Iterable[builtins.str] | None = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["columns", b"columns", "data", b"data", "rows", b"rows"]) -> None: ...

global___String2DArray = String2DArray