diff options
author | Florian Klink <flokli@flokli.de> | 2023-12-09T13·23+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-12-11T10·29+0000 |
commit | 3c0a9a949ab71545de23102a8309ad0bea591c1f (patch) | |
tree | 01f300d71d0103a05ac46f58324c9350b2671f96 /tvix/store-go/rpc_pathinfo_grpc.pb.go | |
parent | 459d9e106f68ea2761ee2dcaaa28e67756d6bdc3 (diff) |
chore(tvix/store/protof): buf format r/7150
Change-Id: I29b0fb62aa849ee01860dc7fe3dbba9b941ca172 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10238 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: Adam Joseph <adam@westernsemico.com>
Diffstat (limited to 'tvix/store-go/rpc_pathinfo_grpc.pb.go')
-rw-r--r-- | tvix/store-go/rpc_pathinfo_grpc.pb.go | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/tvix/store-go/rpc_pathinfo_grpc.pb.go b/tvix/store-go/rpc_pathinfo_grpc.pb.go index 4096211c1bb2..8d6c0ff841a8 100644 --- a/tvix/store-go/rpc_pathinfo_grpc.pb.go +++ b/tvix/store-go/rpc_pathinfo_grpc.pb.go @@ -45,22 +45,22 @@ type PathInfoServiceClient interface { // Uploading clients SHOULD obviously not steer other machines to try to // substitute before from the remote end before having finished uploading // PathInfo, Directories and Blobs. - // The returned PathInfo object MAY contain additional narinfo signatures, - // but is otherwise left untouched. + // The returned PathInfo object MAY contain additional narinfo signatures, but + // is otherwise left untouched. Put(ctx context.Context, in *PathInfo, opts ...grpc.CallOption) (*PathInfo, error) // Calculate the NAR representation of the contents specified by the // root_node. The calculation SHOULD be cached server-side for subsequent // requests. // - // All references (to blobs or Directory messages) MUST already exist in - // the store. + // All references (to blobs or Directory messages) MUST already exist in the + // store. // - // The method can be used to produce a Nix fixed-output path, which - // contains the (compressed) sha256 of the NAR content representation in - // the root_node name (suffixed with the name). + // The method can be used to produce a Nix fixed-output path, which contains + // the (compressed) sha256 of the NAR content representation in the root_node + // name (suffixed with the name). // - // It can also be used to calculate arbitrary NAR hashes of output paths, - // in case a legacy Nix Binary Cache frontend is provided. + // It can also be used to calculate arbitrary NAR hashes of output paths, in + // case a legacy Nix Binary Cache frontend is provided. CalculateNAR(ctx context.Context, in *castore_go.Node, opts ...grpc.CallOption) (*CalculateNARResponse, error) // Return a stream of PathInfo messages matching the criteria specified in // ListPathInfoRequest. @@ -150,22 +150,22 @@ type PathInfoServiceServer interface { // Uploading clients SHOULD obviously not steer other machines to try to // substitute before from the remote end before having finished uploading // PathInfo, Directories and Blobs. - // The returned PathInfo object MAY contain additional narinfo signatures, - // but is otherwise left untouched. + // The returned PathInfo object MAY contain additional narinfo signatures, but + // is otherwise left untouched. Put(context.Context, *PathInfo) (*PathInfo, error) // Calculate the NAR representation of the contents specified by the // root_node. The calculation SHOULD be cached server-side for subsequent // requests. // - // All references (to blobs or Directory messages) MUST already exist in - // the store. + // All references (to blobs or Directory messages) MUST already exist in the + // store. // - // The method can be used to produce a Nix fixed-output path, which - // contains the (compressed) sha256 of the NAR content representation in - // the root_node name (suffixed with the name). + // The method can be used to produce a Nix fixed-output path, which contains + // the (compressed) sha256 of the NAR content representation in the root_node + // name (suffixed with the name). // - // It can also be used to calculate arbitrary NAR hashes of output paths, - // in case a legacy Nix Binary Cache frontend is provided. + // It can also be used to calculate arbitrary NAR hashes of output paths, in + // case a legacy Nix Binary Cache frontend is provided. CalculateNAR(context.Context, *castore_go.Node) (*CalculateNARResponse, error) // Return a stream of PathInfo messages matching the criteria specified in // ListPathInfoRequest. |