Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Cai <jcai@gitlab.com>2019-04-23 19:48:04 +0300
committerJohn Cai <jcai@gitlab.com>2019-04-23 19:48:04 +0300
commit4469b9cb4c17a32635834a6752b2a9f2bf005dd5 (patch)
tree85830029c7993058babe072ea2a0d7b6b153815e
parent384c4754a2091a4ad5c8d5c9a86af78a39a44c90 (diff)
parente6362fb354c5e09f2a450b8580a52f2d355a0c32 (diff)
Merge branch 'jc-add-fetch-into-object-pool' into 'master'
Adding FetchIntoObjectPool RPC See merge request gitlab-org/gitaly!1172
-rw-r--r--changelogs/unreleased/jc-add-fetch-into-object-pool.yml5
-rw-r--r--internal/git/objectpool/fetch.go68
-rw-r--r--internal/git/objectpool/pool.go19
-rw-r--r--internal/service/objectpool/fetch_into_object_pool.go47
-rw-r--r--internal/service/objectpool/fetch_into_object_pool_test.go122
-rw-r--r--internal/service/objectpool/server.go4
-rw-r--r--internal/service/repository/repack.go3
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go213
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go549
-rw-r--r--vendor/vendor.json10
10 files changed, 724 insertions, 316 deletions
diff --git a/changelogs/unreleased/jc-add-fetch-into-object-pool.yml b/changelogs/unreleased/jc-add-fetch-into-object-pool.yml
new file mode 100644
index 000000000..78438dfa2
--- /dev/null
+++ b/changelogs/unreleased/jc-add-fetch-into-object-pool.yml
@@ -0,0 +1,5 @@
+---
+title: Adding FetchIntoObjectPool RPC
+merge_request: 1172
+author:
+type: added
diff --git a/internal/git/objectpool/fetch.go b/internal/git/objectpool/fetch.go
new file mode 100644
index 000000000..2b967ad70
--- /dev/null
+++ b/internal/git/objectpool/fetch.go
@@ -0,0 +1,68 @@
+package objectpool
+
+import (
+ "bufio"
+ "context"
+
+ "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/internal/command"
+ "gitlab.com/gitlab-org/gitaly/internal/git"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+)
+
+// FetchFromOrigin initializes the pool and fetches the objects from its origin repository
+func (o *ObjectPool) FetchFromOrigin(ctx context.Context, origin *gitalypb.Repository) error {
+ if err := o.Init(ctx); err != nil {
+ return err
+ }
+
+ originPath, err := helper.GetPath(origin)
+
+ if err != nil {
+ return err
+ }
+
+ getRemotes, err := git.Command(ctx, o, "remote")
+ if err != nil {
+ return err
+ }
+
+ remoteReader := bufio.NewScanner(getRemotes)
+
+ var originExists bool
+ for remoteReader.Scan() {
+ if remoteReader.Text() == "origin" {
+ originExists = true
+ }
+ }
+ if err := getRemotes.Wait(); err != nil {
+ return err
+ }
+
+ var setOriginCmd *command.Command
+ if originExists {
+ setOriginCmd, err = git.Command(ctx, o, "remote", "set-url", "origin", originPath)
+ if err != nil {
+ return err
+ }
+ } else {
+ setOriginCmd, err = git.Command(ctx, o, "remote", "add", "origin", originPath)
+ if err != nil {
+ return err
+ }
+ }
+
+ if err := setOriginCmd.Wait(); err != nil {
+ return err
+ }
+
+ fetchCmd, err := git.Command(ctx, o, "fetch", "--quiet", "origin")
+ if err != nil {
+ return err
+ }
+
+ if err := fetchCmd.Wait(); err != nil {
+ return err
+ }
+ return nil
+}
diff --git a/internal/git/objectpool/pool.go b/internal/git/objectpool/pool.go
index 67d22870e..699903cbf 100644
--- a/internal/git/objectpool/pool.go
+++ b/internal/git/objectpool/pool.go
@@ -7,6 +7,7 @@ import (
"path"
"gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/internal/git"
"gitlab.com/gitlab-org/gitaly/internal/helper"
)
@@ -92,3 +93,21 @@ func (o *ObjectPool) Create(ctx context.Context, repo *gitalypb.Repository) (err
func (o *ObjectPool) Remove(ctx context.Context) (err error) {
return os.RemoveAll(o.FullPath())
}
+
+// Init will intiailize an empty pool repository
+// if one already exists, it will do nothing
+func (o *ObjectPool) Init(ctx context.Context) (err error) {
+ targetDir := o.FullPath()
+
+ if helper.IsGitDirectory(targetDir) {
+ return nil
+ }
+
+ initArgs := []string{"init", "--bare", targetDir}
+ cmd, err := git.CommandWithoutRepo(ctx, initArgs...)
+ if err != nil {
+ return err
+ }
+
+ return cmd.Wait()
+}
diff --git a/internal/service/objectpool/fetch_into_object_pool.go b/internal/service/objectpool/fetch_into_object_pool.go
new file mode 100644
index 000000000..c331a5da4
--- /dev/null
+++ b/internal/service/objectpool/fetch_into_object_pool.go
@@ -0,0 +1,47 @@
+package objectpool
+
+import (
+ "context"
+ "errors"
+ "fmt"
+
+ "gitlab.com/gitlab-org/gitaly/internal/git/objectpool"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+
+ "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+)
+
+func (s *server) FetchIntoObjectPool(ctx context.Context, req *gitalypb.FetchIntoObjectPoolRequest) (*gitalypb.FetchIntoObjectPoolResponse, error) {
+ if err := validateFetchIntoObjectPoolRequest(req); err != nil {
+ return nil, helper.ErrInvalidArgument(err)
+ }
+
+ objectPool, err := objectpool.FromProto(req.GetObjectPool())
+ if err != nil {
+ return nil, helper.ErrInvalidArgument(fmt.Errorf("object pool invalid: %v", err))
+ }
+
+ if err := objectPool.FetchFromOrigin(ctx, req.GetOrigin()); err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ return &gitalypb.FetchIntoObjectPoolResponse{}, nil
+}
+
+func validateFetchIntoObjectPoolRequest(req *gitalypb.FetchIntoObjectPoolRequest) error {
+ if req.GetOrigin() == nil {
+ return errors.New("origin is empty")
+ }
+
+ if req.GetObjectPool() == nil {
+ return errors.New("object pool is empty")
+ }
+
+ originRepository, poolRepository := req.GetOrigin(), req.GetObjectPool().GetRepository()
+
+ if originRepository.GetStorageName() != poolRepository.GetStorageName() {
+ return errors.New("origin has different storage than object pool")
+ }
+
+ return nil
+}
diff --git a/internal/service/objectpool/fetch_into_object_pool_test.go b/internal/service/objectpool/fetch_into_object_pool_test.go
new file mode 100644
index 000000000..4a40d13bb
--- /dev/null
+++ b/internal/service/objectpool/fetch_into_object_pool_test.go
@@ -0,0 +1,122 @@
+package objectpool
+
+import (
+ "path"
+ "path/filepath"
+ "testing"
+
+ "google.golang.org/grpc/codes"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/internal/git/objectpool"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+)
+
+func TestFetchIntoObjectPool_Success(t *testing.T) {
+ server, serverSocketPath := runObjectPoolServer(t)
+ defer server.Stop()
+
+ client, conn := newObjectPoolClient(t, serverSocketPath)
+ defer conn.Close()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ testRepo, testRepoPath, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ repoCommit := testhelper.CreateCommit(t, testRepoPath, t.Name(), &testhelper.CreateCommitOpts{Message: t.Name()})
+
+ pool, err := objectpool.NewObjectPool("default", t.Name())
+ require.NoError(t, err)
+ defer pool.Remove(ctx)
+
+ req := &gitalypb.FetchIntoObjectPoolRequest{
+ ObjectPool: pool.ToProto(),
+ Origin: testRepo,
+ Repack: true,
+ }
+
+ _, err = client.FetchIntoObjectPool(ctx, req)
+ require.NoError(t, err)
+
+ require.True(t, pool.IsValid(), "ensure underlying repository is valid")
+
+ // No problems
+ testhelper.MustRunCommand(t, nil, "git", "-C", pool.FullPath(), "fsck")
+
+ packFiles, err := filepath.Glob(path.Join(pool.FullPath(), "objects", "pack", "pack-*.pack"))
+ require.NoError(t, err)
+ require.Len(t, packFiles, 1, "ensure commits got packed")
+
+ packContents := testhelper.MustRunCommand(t, nil, "git", "-C", pool.FullPath(), "verify-pack", "-v", packFiles[0])
+ require.Contains(t, string(packContents), string(repoCommit))
+
+ _, err = client.FetchIntoObjectPool(ctx, req)
+ require.NoError(t, err, "calling FetchIntoObjectPool twice should be OK")
+ require.True(t, pool.IsValid(), "ensure that pool is valid")
+}
+
+func TestFetchIntoObjectPool_Failure(t *testing.T) {
+ server, serverSocketPath := runObjectPoolServer(t)
+ defer server.Stop()
+
+ client, conn := newObjectPoolClient(t, serverSocketPath)
+ defer conn.Close()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ pool, err := objectpool.NewObjectPool("default", t.Name())
+ require.NoError(t, err)
+ defer pool.Remove(ctx)
+
+ poolWithDifferentStorage := pool.ToProto()
+ poolWithDifferentStorage.Repository.StorageName = "some other storage"
+
+ testCases := []struct {
+ description string
+ request *gitalypb.FetchIntoObjectPoolRequest
+ code codes.Code
+ errMsg string
+ }{
+ {
+ description: "empty origin",
+ request: &gitalypb.FetchIntoObjectPoolRequest{
+ ObjectPool: pool.ToProto(),
+ },
+ code: codes.InvalidArgument,
+ errMsg: "origin is empty",
+ },
+ {
+ description: "empty pool",
+ request: &gitalypb.FetchIntoObjectPoolRequest{
+ Origin: testRepo,
+ },
+ code: codes.InvalidArgument,
+ errMsg: "object pool is empty",
+ },
+ {
+ description: "origin and pool do not share the same storage",
+ request: &gitalypb.FetchIntoObjectPoolRequest{
+ Origin: testRepo,
+ ObjectPool: poolWithDifferentStorage,
+ },
+ code: codes.InvalidArgument,
+ errMsg: "origin has different storage than object pool",
+ },
+ }
+ for _, tc := range testCases {
+ t.Run(tc.description, func(t *testing.T) {
+ _, err := client.FetchIntoObjectPool(ctx, tc.request)
+ require.Error(t, err)
+ testhelper.RequireGrpcError(t, err, tc.code)
+ assert.Contains(t, err.Error(), tc.errMsg)
+ })
+ }
+}
diff --git a/internal/service/objectpool/server.go b/internal/service/objectpool/server.go
index 505c9de9c..d3cab887c 100644
--- a/internal/service/objectpool/server.go
+++ b/internal/service/objectpool/server.go
@@ -2,9 +2,9 @@ package objectpool
import (
"context"
- "errors"
"gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
)
type server struct{}
@@ -15,5 +15,5 @@ func NewServer() gitalypb.ObjectPoolServiceServer {
}
func (s *server) DisconnectGitAlternates(ctx context.Context, req *gitalypb.DisconnectGitAlternatesRequest) (*gitalypb.DisconnectGitAlternatesResponse, error) {
- return nil, errors.New("not implemented yet")
+ return nil, helper.Unimplemented
}
diff --git a/internal/service/repository/repack.go b/internal/service/repository/repack.go
index fcc876a44..4d2d0dad7 100644
--- a/internal/service/repository/repack.go
+++ b/internal/service/repository/repack.go
@@ -8,6 +8,7 @@ import (
"gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
"gitlab.com/gitlab-org/gitaly/internal/featureflag"
"gitlab.com/gitlab-org/gitaly/internal/git"
+ "gitlab.com/gitlab-org/gitaly/internal/git/repository"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
@@ -42,7 +43,7 @@ func (server) RepackIncremental(ctx context.Context, in *gitalypb.RepackIncremen
return &gitalypb.RepackIncrementalResponse{}, nil
}
-func repackCommand(ctx context.Context, repo *gitalypb.Repository, bitmap bool, args ...string) error {
+func repackCommand(ctx context.Context, repo repository.GitRepo, bitmap bool, args ...string) error {
cmdArgs := repackConfig(ctx, bitmap)
cmdArgs = append(cmdArgs, "repack", "-d")
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go
index cef5012a4..d28268274 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/objectpool.pb.go
@@ -37,7 +37,7 @@ func (m *CreateObjectPoolRequest) Reset() { *m = CreateObjectPoolRequest
func (m *CreateObjectPoolRequest) String() string { return proto.CompactTextString(m) }
func (*CreateObjectPoolRequest) ProtoMessage() {}
func (*CreateObjectPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{0}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{0}
}
func (m *CreateObjectPoolRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateObjectPoolRequest.Unmarshal(m, b)
@@ -81,7 +81,7 @@ func (m *CreateObjectPoolResponse) Reset() { *m = CreateObjectPoolRespon
func (m *CreateObjectPoolResponse) String() string { return proto.CompactTextString(m) }
func (*CreateObjectPoolResponse) ProtoMessage() {}
func (*CreateObjectPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{1}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{1}
}
func (m *CreateObjectPoolResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateObjectPoolResponse.Unmarshal(m, b)
@@ -114,7 +114,7 @@ func (m *DeleteObjectPoolRequest) Reset() { *m = DeleteObjectPoolRequest
func (m *DeleteObjectPoolRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteObjectPoolRequest) ProtoMessage() {}
func (*DeleteObjectPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{2}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{2}
}
func (m *DeleteObjectPoolRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteObjectPoolRequest.Unmarshal(m, b)
@@ -151,7 +151,7 @@ func (m *DeleteObjectPoolResponse) Reset() { *m = DeleteObjectPoolRespon
func (m *DeleteObjectPoolResponse) String() string { return proto.CompactTextString(m) }
func (*DeleteObjectPoolResponse) ProtoMessage() {}
func (*DeleteObjectPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{3}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{3}
}
func (m *DeleteObjectPoolResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteObjectPoolResponse.Unmarshal(m, b)
@@ -183,7 +183,7 @@ func (m *LinkRepositoryToObjectPoolRequest) Reset() { *m = LinkRepositor
func (m *LinkRepositoryToObjectPoolRequest) String() string { return proto.CompactTextString(m) }
func (*LinkRepositoryToObjectPoolRequest) ProtoMessage() {}
func (*LinkRepositoryToObjectPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{4}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{4}
}
func (m *LinkRepositoryToObjectPoolRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LinkRepositoryToObjectPoolRequest.Unmarshal(m, b)
@@ -227,7 +227,7 @@ func (m *LinkRepositoryToObjectPoolResponse) Reset() { *m = LinkReposito
func (m *LinkRepositoryToObjectPoolResponse) String() string { return proto.CompactTextString(m) }
func (*LinkRepositoryToObjectPoolResponse) ProtoMessage() {}
func (*LinkRepositoryToObjectPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{5}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{5}
}
func (m *LinkRepositoryToObjectPoolResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LinkRepositoryToObjectPoolResponse.Unmarshal(m, b)
@@ -261,7 +261,7 @@ func (m *UnlinkRepositoryFromObjectPoolRequest) Reset() { *m = UnlinkRep
func (m *UnlinkRepositoryFromObjectPoolRequest) String() string { return proto.CompactTextString(m) }
func (*UnlinkRepositoryFromObjectPoolRequest) ProtoMessage() {}
func (*UnlinkRepositoryFromObjectPoolRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{6}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{6}
}
func (m *UnlinkRepositoryFromObjectPoolRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UnlinkRepositoryFromObjectPoolRequest.Unmarshal(m, b)
@@ -307,7 +307,7 @@ func (m *UnlinkRepositoryFromObjectPoolResponse) Reset() {
func (m *UnlinkRepositoryFromObjectPoolResponse) String() string { return proto.CompactTextString(m) }
func (*UnlinkRepositoryFromObjectPoolResponse) ProtoMessage() {}
func (*UnlinkRepositoryFromObjectPoolResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{7}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{7}
}
func (m *UnlinkRepositoryFromObjectPoolResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UnlinkRepositoryFromObjectPoolResponse.Unmarshal(m, b)
@@ -338,7 +338,7 @@ func (m *ReduplicateRepositoryRequest) Reset() { *m = ReduplicateReposit
func (m *ReduplicateRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*ReduplicateRepositoryRequest) ProtoMessage() {}
func (*ReduplicateRepositoryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{8}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{8}
}
func (m *ReduplicateRepositoryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReduplicateRepositoryRequest.Unmarshal(m, b)
@@ -375,7 +375,7 @@ func (m *ReduplicateRepositoryResponse) Reset() { *m = ReduplicateReposi
func (m *ReduplicateRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*ReduplicateRepositoryResponse) ProtoMessage() {}
func (*ReduplicateRepositoryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{9}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{9}
}
func (m *ReduplicateRepositoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReduplicateRepositoryResponse.Unmarshal(m, b)
@@ -406,7 +406,7 @@ func (m *DisconnectGitAlternatesRequest) Reset() { *m = DisconnectGitAlt
func (m *DisconnectGitAlternatesRequest) String() string { return proto.CompactTextString(m) }
func (*DisconnectGitAlternatesRequest) ProtoMessage() {}
func (*DisconnectGitAlternatesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{10}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{10}
}
func (m *DisconnectGitAlternatesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DisconnectGitAlternatesRequest.Unmarshal(m, b)
@@ -443,7 +443,7 @@ func (m *DisconnectGitAlternatesResponse) Reset() { *m = DisconnectGitAl
func (m *DisconnectGitAlternatesResponse) String() string { return proto.CompactTextString(m) }
func (*DisconnectGitAlternatesResponse) ProtoMessage() {}
func (*DisconnectGitAlternatesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_objectpool_3dfe0d7fff6d05f6, []int{11}
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{11}
}
func (m *DisconnectGitAlternatesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DisconnectGitAlternatesResponse.Unmarshal(m, b)
@@ -463,6 +463,90 @@ func (m *DisconnectGitAlternatesResponse) XXX_DiscardUnknown() {
var xxx_messageInfo_DisconnectGitAlternatesResponse proto.InternalMessageInfo
+type FetchIntoObjectPoolRequest struct {
+ Origin *Repository `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin,omitempty"`
+ ObjectPool *ObjectPool `protobuf:"bytes,2,opt,name=object_pool,json=objectPool,proto3" json:"object_pool,omitempty"`
+ Repack bool `protobuf:"varint,3,opt,name=repack,proto3" json:"repack,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *FetchIntoObjectPoolRequest) Reset() { *m = FetchIntoObjectPoolRequest{} }
+func (m *FetchIntoObjectPoolRequest) String() string { return proto.CompactTextString(m) }
+func (*FetchIntoObjectPoolRequest) ProtoMessage() {}
+func (*FetchIntoObjectPoolRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{12}
+}
+func (m *FetchIntoObjectPoolRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_FetchIntoObjectPoolRequest.Unmarshal(m, b)
+}
+func (m *FetchIntoObjectPoolRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_FetchIntoObjectPoolRequest.Marshal(b, m, deterministic)
+}
+func (dst *FetchIntoObjectPoolRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_FetchIntoObjectPoolRequest.Merge(dst, src)
+}
+func (m *FetchIntoObjectPoolRequest) XXX_Size() int {
+ return xxx_messageInfo_FetchIntoObjectPoolRequest.Size(m)
+}
+func (m *FetchIntoObjectPoolRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_FetchIntoObjectPoolRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_FetchIntoObjectPoolRequest proto.InternalMessageInfo
+
+func (m *FetchIntoObjectPoolRequest) GetOrigin() *Repository {
+ if m != nil {
+ return m.Origin
+ }
+ return nil
+}
+
+func (m *FetchIntoObjectPoolRequest) GetObjectPool() *ObjectPool {
+ if m != nil {
+ return m.ObjectPool
+ }
+ return nil
+}
+
+func (m *FetchIntoObjectPoolRequest) GetRepack() bool {
+ if m != nil {
+ return m.Repack
+ }
+ return false
+}
+
+type FetchIntoObjectPoolResponse struct {
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *FetchIntoObjectPoolResponse) Reset() { *m = FetchIntoObjectPoolResponse{} }
+func (m *FetchIntoObjectPoolResponse) String() string { return proto.CompactTextString(m) }
+func (*FetchIntoObjectPoolResponse) ProtoMessage() {}
+func (*FetchIntoObjectPoolResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_objectpool_9f08c40ea75d0855, []int{13}
+}
+func (m *FetchIntoObjectPoolResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_FetchIntoObjectPoolResponse.Unmarshal(m, b)
+}
+func (m *FetchIntoObjectPoolResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_FetchIntoObjectPoolResponse.Marshal(b, m, deterministic)
+}
+func (dst *FetchIntoObjectPoolResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_FetchIntoObjectPoolResponse.Merge(dst, src)
+}
+func (m *FetchIntoObjectPoolResponse) XXX_Size() int {
+ return xxx_messageInfo_FetchIntoObjectPoolResponse.Size(m)
+}
+func (m *FetchIntoObjectPoolResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_FetchIntoObjectPoolResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_FetchIntoObjectPoolResponse proto.InternalMessageInfo
+
func init() {
proto.RegisterType((*CreateObjectPoolRequest)(nil), "gitaly.CreateObjectPoolRequest")
proto.RegisterType((*CreateObjectPoolResponse)(nil), "gitaly.CreateObjectPoolResponse")
@@ -476,6 +560,8 @@ func init() {
proto.RegisterType((*ReduplicateRepositoryResponse)(nil), "gitaly.ReduplicateRepositoryResponse")
proto.RegisterType((*DisconnectGitAlternatesRequest)(nil), "gitaly.DisconnectGitAlternatesRequest")
proto.RegisterType((*DisconnectGitAlternatesResponse)(nil), "gitaly.DisconnectGitAlternatesResponse")
+ proto.RegisterType((*FetchIntoObjectPoolRequest)(nil), "gitaly.FetchIntoObjectPoolRequest")
+ proto.RegisterType((*FetchIntoObjectPoolResponse)(nil), "gitaly.FetchIntoObjectPoolResponse")
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -497,6 +583,7 @@ type ObjectPoolServiceClient interface {
UnlinkRepositoryFromObjectPool(ctx context.Context, in *UnlinkRepositoryFromObjectPoolRequest, opts ...grpc.CallOption) (*UnlinkRepositoryFromObjectPoolResponse, error)
ReduplicateRepository(ctx context.Context, in *ReduplicateRepositoryRequest, opts ...grpc.CallOption) (*ReduplicateRepositoryResponse, error)
DisconnectGitAlternates(ctx context.Context, in *DisconnectGitAlternatesRequest, opts ...grpc.CallOption) (*DisconnectGitAlternatesResponse, error)
+ FetchIntoObjectPool(ctx context.Context, in *FetchIntoObjectPoolRequest, opts ...grpc.CallOption) (*FetchIntoObjectPoolResponse, error)
}
type objectPoolServiceClient struct {
@@ -561,6 +648,15 @@ func (c *objectPoolServiceClient) DisconnectGitAlternates(ctx context.Context, i
return out, nil
}
+func (c *objectPoolServiceClient) FetchIntoObjectPool(ctx context.Context, in *FetchIntoObjectPoolRequest, opts ...grpc.CallOption) (*FetchIntoObjectPoolResponse, error) {
+ out := new(FetchIntoObjectPoolResponse)
+ err := c.cc.Invoke(ctx, "/gitaly.ObjectPoolService/FetchIntoObjectPool", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// ObjectPoolServiceServer is the server API for ObjectPoolService service.
type ObjectPoolServiceServer interface {
CreateObjectPool(context.Context, *CreateObjectPoolRequest) (*CreateObjectPoolResponse, error)
@@ -570,6 +666,7 @@ type ObjectPoolServiceServer interface {
UnlinkRepositoryFromObjectPool(context.Context, *UnlinkRepositoryFromObjectPoolRequest) (*UnlinkRepositoryFromObjectPoolResponse, error)
ReduplicateRepository(context.Context, *ReduplicateRepositoryRequest) (*ReduplicateRepositoryResponse, error)
DisconnectGitAlternates(context.Context, *DisconnectGitAlternatesRequest) (*DisconnectGitAlternatesResponse, error)
+ FetchIntoObjectPool(context.Context, *FetchIntoObjectPoolRequest) (*FetchIntoObjectPoolResponse, error)
}
func RegisterObjectPoolServiceServer(s *grpc.Server, srv ObjectPoolServiceServer) {
@@ -684,6 +781,24 @@ func _ObjectPoolService_DisconnectGitAlternates_Handler(srv interface{}, ctx con
return interceptor(ctx, in, info, handler)
}
+func _ObjectPoolService_FetchIntoObjectPool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(FetchIntoObjectPoolRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ObjectPoolServiceServer).FetchIntoObjectPool(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.ObjectPoolService/FetchIntoObjectPool",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ObjectPoolServiceServer).FetchIntoObjectPool(ctx, req.(*FetchIntoObjectPoolRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _ObjectPoolService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.ObjectPoolService",
HandlerType: (*ObjectPoolServiceServer)(nil),
@@ -712,42 +827,50 @@ var _ObjectPoolService_serviceDesc = grpc.ServiceDesc{
MethodName: "DisconnectGitAlternates",
Handler: _ObjectPoolService_DisconnectGitAlternates_Handler,
},
+ {
+ MethodName: "FetchIntoObjectPool",
+ Handler: _ObjectPoolService_FetchIntoObjectPool_Handler,
+ },
},
Streams: []grpc.StreamDesc{},
Metadata: "objectpool.proto",
}
-func init() { proto.RegisterFile("objectpool.proto", fileDescriptor_objectpool_3dfe0d7fff6d05f6) }
-
-var fileDescriptor_objectpool_3dfe0d7fff6d05f6 = []byte{
- // 459 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0xc1, 0x6e, 0xd3, 0x40,
- 0x10, 0x86, 0xe5, 0x48, 0x58, 0x68, 0xca, 0xa1, 0xac, 0x84, 0x12, 0xad, 0xa0, 0x69, 0xad, 0xb6,
- 0x84, 0x4a, 0x71, 0x50, 0xfa, 0x04, 0x40, 0x05, 0x17, 0x04, 0xc8, 0x94, 0x0b, 0x12, 0x42, 0xb6,
- 0x3b, 0x32, 0x0b, 0x5b, 0x8f, 0x59, 0x6f, 0x91, 0x02, 0x0f, 0xc0, 0x85, 0x03, 0x37, 0xde, 0x85,
- 0x47, 0xe3, 0x84, 0x1c, 0xdb, 0x71, 0xec, 0xb0, 0xb6, 0x45, 0x73, 0xdb, 0xac, 0xfe, 0x7c, 0xff,
- 0xbf, 0x93, 0x7f, 0x14, 0xd8, 0xa5, 0xe0, 0x23, 0x86, 0x3a, 0x21, 0x92, 0x6e, 0xa2, 0x48, 0x13,
- 0xb3, 0x23, 0xa1, 0x7d, 0xb9, 0xe0, 0xb7, 0xd2, 0x0f, 0xbe, 0xc2, 0x8b, 0xfc, 0xd6, 0xf9, 0x0a,
- 0xc3, 0x27, 0x0a, 0x7d, 0x8d, 0x2f, 0x97, 0xfa, 0x57, 0x44, 0xd2, 0xc3, 0xcf, 0x57, 0x98, 0x6a,
- 0x76, 0x0a, 0x3b, 0x39, 0xe4, 0x7d, 0x46, 0x19, 0x59, 0xfb, 0xd6, 0x64, 0x67, 0xce, 0xdc, 0x1c,
- 0xe3, 0xae, 0xe9, 0x81, 0x56, 0x67, 0x76, 0x02, 0x36, 0x29, 0x11, 0x89, 0x78, 0x34, 0xa8, 0xeb,
- 0x3d, 0x4c, 0x28, 0x15, 0x9a, 0xd4, 0xc2, 0x2b, 0x14, 0x0e, 0x87, 0xd1, 0xa6, 0x77, 0x9a, 0x50,
- 0x9c, 0xa2, 0xf3, 0x02, 0x86, 0x67, 0x28, 0x71, 0x5b, 0xb9, 0x32, 0xaf, 0x4d, 0x5e, 0xe1, 0xf5,
- 0xc3, 0x82, 0x83, 0xe7, 0x22, 0xfe, 0x54, 0x45, 0x3c, 0xa7, 0x2d, 0x8d, 0x63, 0x0e, 0xa0, 0x56,
- 0xd4, 0x96, 0x91, 0xac, 0xa9, 0x9c, 0x43, 0x70, 0xda, 0xd2, 0x14, 0xa1, 0x7f, 0x5a, 0x70, 0xf4,
- 0x26, 0x96, 0x35, 0xe1, 0x53, 0x45, 0x97, 0x9b, 0xc1, 0xeb, 0x19, 0xac, 0x3e, 0x19, 0x9a, 0x8f,
- 0x1d, 0xf4, 0x9a, 0xf1, 0x04, 0x8e, 0xbb, 0x12, 0x15, 0xe1, 0x3d, 0xb8, 0xeb, 0xe1, 0xc5, 0x55,
- 0x22, 0x45, 0xe8, 0x6b, 0x5c, 0xcb, 0xf0, 0xff, 0x91, 0x9d, 0x31, 0xdc, 0x33, 0x30, 0x0b, 0xd3,
- 0x73, 0xd8, 0x3b, 0x13, 0x69, 0x48, 0x71, 0x8c, 0xa1, 0x7e, 0x26, 0xf4, 0x23, 0xa9, 0x51, 0xc5,
- 0xbe, 0xc6, 0xf4, 0x3a, 0xb6, 0x07, 0x30, 0x36, 0x52, 0x73, 0xe3, 0xf9, 0xef, 0x1b, 0x70, 0xbb,
- 0x1a, 0xc2, 0x6b, 0x54, 0x5f, 0x44, 0x88, 0xec, 0x1d, 0xec, 0x36, 0xdb, 0xcf, 0xc6, 0xa5, 0x99,
- 0x61, 0x27, 0xf9, 0xbe, 0x59, 0x50, 0xbc, 0xd2, 0xfe, 0xf3, 0x6b, 0x32, 0xb8, 0x69, 0x65, 0xf8,
- 0x66, 0xe1, 0x2b, 0xbc, 0x61, 0xb5, 0x2a, 0xbc, 0x71, 0x57, 0x4a, 0xfc, 0x37, 0xe0, 0xe6, 0x92,
- 0xb2, 0x07, 0x25, 0xa7, 0x73, 0xad, 0xf8, 0x49, 0x1f, 0x69, 0xc3, 0xfc, 0xbb, 0x05, 0x7b, 0xed,
- 0x4d, 0x63, 0xd3, 0x12, 0xdb, 0x6b, 0x47, 0xb8, 0xdb, 0x57, 0xde, 0x48, 0x22, 0xe1, 0xce, 0x3f,
- 0x4b, 0xc7, 0x0e, 0xab, 0xda, 0x98, 0x7b, 0xce, 0x8f, 0x3a, 0x54, 0x0d, 0x37, 0x05, 0x43, 0x43,
- 0xd7, 0xd8, 0xf1, 0xea, 0x97, 0x6b, 0xad, 0x38, 0xbf, 0xdf, 0xa9, 0xab, 0x7b, 0x3e, 0x7e, 0xf8,
- 0x36, 0xfb, 0x86, 0xf4, 0x03, 0x37, 0xa4, 0xcb, 0x59, 0x7e, 0x9c, 0x92, 0x8a, 0x66, 0x39, 0x67,
- 0xba, 0xfc, 0x1b, 0x99, 0x45, 0x54, 0x7c, 0x4e, 0x82, 0xc0, 0x5e, 0x5e, 0x9d, 0xfe, 0x0d, 0x00,
- 0x00, 0xff, 0xff, 0x04, 0x1b, 0xa1, 0xe4, 0x83, 0x06, 0x00, 0x00,
+func init() { proto.RegisterFile("objectpool.proto", fileDescriptor_objectpool_9f08c40ea75d0855) }
+
+var fileDescriptor_objectpool_9f08c40ea75d0855 = []byte{
+ // 520 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0xc1, 0x6f, 0xd3, 0x30,
+ 0x14, 0xc6, 0xe5, 0x22, 0x45, 0xd3, 0x1b, 0x87, 0x61, 0x04, 0xad, 0x0c, 0x5b, 0xbb, 0xb0, 0x8d,
+ 0x32, 0xa9, 0x29, 0xea, 0xfe, 0x02, 0x60, 0x1a, 0x42, 0x42, 0x80, 0xc2, 0xb8, 0x20, 0x21, 0x94,
+ 0x66, 0x8f, 0x2e, 0x2c, 0xcb, 0x0b, 0x8e, 0x87, 0x34, 0xf8, 0x03, 0xb8, 0x70, 0xe0, 0x82, 0xb8,
+ 0xf3, 0x67, 0x72, 0x42, 0x6d, 0x9c, 0xa6, 0x4d, 0xeb, 0x24, 0xda, 0x7a, 0x8b, 0xad, 0x4f, 0xdf,
+ 0xf7, 0xeb, 0xb3, 0x3f, 0x17, 0x36, 0x68, 0xf8, 0x19, 0x7d, 0x15, 0x13, 0x85, 0x4e, 0x2c, 0x49,
+ 0x11, 0xb7, 0x46, 0x81, 0xf2, 0xc2, 0x4b, 0x71, 0x33, 0x39, 0xf5, 0x24, 0x9e, 0xa4, 0xbb, 0xf6,
+ 0x37, 0x68, 0x3e, 0x93, 0xe8, 0x29, 0x7c, 0x3d, 0xd1, 0xbf, 0x21, 0x0a, 0x5d, 0xfc, 0x72, 0x81,
+ 0x89, 0xe2, 0x07, 0xb0, 0x9e, 0x9a, 0x7c, 0x1c, 0xbb, 0xb4, 0x58, 0x87, 0x75, 0xd7, 0x07, 0xdc,
+ 0x49, 0x6d, 0x9c, 0x19, 0x3d, 0xd0, 0xf4, 0x9b, 0xef, 0x83, 0x45, 0x32, 0x18, 0x05, 0x51, 0xab,
+ 0x31, 0xaf, 0x77, 0x31, 0xa6, 0x24, 0x50, 0x24, 0x2f, 0x5d, 0xad, 0xb0, 0x05, 0xb4, 0x16, 0xb3,
+ 0x93, 0x98, 0xa2, 0x04, 0xed, 0x57, 0xd0, 0x3c, 0xc4, 0x10, 0x57, 0xc5, 0x35, 0xce, 0x5a, 0xf4,
+ 0xd3, 0x59, 0x3f, 0x19, 0x6c, 0xbf, 0x0c, 0xa2, 0xb3, 0x1c, 0xf1, 0x98, 0x56, 0x34, 0x8e, 0x01,
+ 0x80, 0x9c, 0xba, 0x96, 0x8c, 0x64, 0x46, 0x65, 0xef, 0x80, 0x5d, 0x46, 0xa3, 0xa1, 0x7f, 0x31,
+ 0xd8, 0x7d, 0x17, 0x85, 0x73, 0xc2, 0x23, 0x49, 0xe7, 0x8b, 0xe0, 0xf3, 0x0c, 0xac, 0x0e, 0x43,
+ 0xf1, 0xc7, 0x36, 0x6a, 0xcd, 0xb8, 0x0b, 0x7b, 0x55, 0x44, 0x1a, 0xde, 0x85, 0xfb, 0x2e, 0x9e,
+ 0x5c, 0xc4, 0x61, 0xe0, 0x7b, 0x0a, 0x67, 0x18, 0xae, 0x8e, 0x6c, 0xb7, 0x61, 0xd3, 0xe0, 0xa9,
+ 0x43, 0x8f, 0x61, 0xeb, 0x30, 0x48, 0x7c, 0x8a, 0x22, 0xf4, 0xd5, 0xf3, 0x40, 0x3d, 0x09, 0x15,
+ 0xca, 0xc8, 0x53, 0x98, 0x5c, 0x27, 0x76, 0x1b, 0xda, 0x46, 0x57, 0x1d, 0xfc, 0x9b, 0x81, 0x38,
+ 0x42, 0xe5, 0x9f, 0xbe, 0x88, 0xd4, 0x92, 0x8b, 0x95, 0x57, 0x86, 0x55, 0x55, 0xe6, 0x4a, 0xe7,
+ 0xc2, 0xef, 0x82, 0x25, 0x31, 0xf6, 0xfc, 0xb3, 0xd6, 0x8d, 0x0e, 0xeb, 0xae, 0xb9, 0x7a, 0x65,
+ 0x6f, 0xc2, 0xbd, 0xa5, 0x58, 0x29, 0xf6, 0xe0, 0xaf, 0x05, 0xb7, 0xf2, 0xed, 0xb7, 0x28, 0xbf,
+ 0x06, 0x3e, 0xf2, 0x0f, 0xb0, 0x51, 0x2c, 0x2d, 0x6f, 0x67, 0x00, 0x86, 0xa7, 0x44, 0x74, 0xcc,
+ 0x02, 0x3d, 0x23, 0xeb, 0xdf, 0x9f, 0x6e, 0x63, 0x8d, 0x8d, 0xed, 0x8b, 0x3d, 0xcd, 0xed, 0x0d,
+ 0x2f, 0x42, 0x6e, 0x6f, 0xac, 0x78, 0x66, 0xff, 0x1d, 0x84, 0xb9, 0x5b, 0xfc, 0x51, 0xe6, 0x53,
+ 0xf9, 0x1a, 0x88, 0xfd, 0x3a, 0xd2, 0x42, 0xf8, 0x0f, 0x06, 0x5b, 0xe5, 0x05, 0xe1, 0xbd, 0xcc,
+ 0xb6, 0x56, 0xb5, 0x85, 0x53, 0x57, 0x5e, 0x20, 0x09, 0xe1, 0xce, 0xd2, 0xae, 0xf0, 0x9d, 0xfc,
+ 0xee, 0x99, 0xeb, 0x29, 0x76, 0x2b, 0x54, 0x85, 0x34, 0x09, 0x4d, 0x43, 0x45, 0xf8, 0xde, 0xf4,
+ 0xe4, 0x4a, 0x9b, 0x29, 0x1e, 0x56, 0xea, 0x0a, 0x99, 0x9f, 0xe0, 0xf6, 0x92, 0xbb, 0xcd, 0xed,
+ 0xcc, 0xc7, 0xdc, 0x47, 0xf1, 0xa0, 0x54, 0x33, 0x9f, 0xf3, 0xf4, 0xf1, 0xfb, 0xb1, 0x3a, 0xf4,
+ 0x86, 0x8e, 0x4f, 0xe7, 0xfd, 0xf4, 0xb3, 0x47, 0x72, 0xd4, 0x4f, 0x3d, 0x7a, 0x93, 0x7f, 0xd9,
+ 0xfe, 0x88, 0xf4, 0x3a, 0x1e, 0x0e, 0xad, 0xc9, 0xd6, 0xc1, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0x31, 0x3d, 0xeb, 0x4f, 0xa2, 0x07, 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go
index 061a691ca..abf9e107d 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go
@@ -49,7 +49,7 @@ func (x GetArchiveRequest_Format) String() string {
return proto.EnumName(GetArchiveRequest_Format_name, int32(x))
}
func (GetArchiveRequest_Format) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{18, 0}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{18, 0}
}
type GetRawChangesResponse_RawChange_Operation int32
@@ -87,7 +87,7 @@ func (x GetRawChangesResponse_RawChange_Operation) String() string {
return proto.EnumName(GetRawChangesResponse_RawChange_Operation_name, int32(x))
}
func (GetRawChangesResponse_RawChange_Operation) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{63, 0, 0}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{63, 0, 0}
}
type RepositoryExistsRequest struct {
@@ -101,7 +101,7 @@ func (m *RepositoryExistsRequest) Reset() { *m = RepositoryExistsRequest
func (m *RepositoryExistsRequest) String() string { return proto.CompactTextString(m) }
func (*RepositoryExistsRequest) ProtoMessage() {}
func (*RepositoryExistsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{0}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{0}
}
func (m *RepositoryExistsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositoryExistsRequest.Unmarshal(m, b)
@@ -139,7 +139,7 @@ func (m *RepositoryExistsResponse) Reset() { *m = RepositoryExistsRespon
func (m *RepositoryExistsResponse) String() string { return proto.CompactTextString(m) }
func (*RepositoryExistsResponse) ProtoMessage() {}
func (*RepositoryExistsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{1}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{1}
}
func (m *RepositoryExistsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositoryExistsResponse.Unmarshal(m, b)
@@ -177,7 +177,7 @@ func (m *RepackIncrementalRequest) Reset() { *m = RepackIncrementalReque
func (m *RepackIncrementalRequest) String() string { return proto.CompactTextString(m) }
func (*RepackIncrementalRequest) ProtoMessage() {}
func (*RepackIncrementalRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{2}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{2}
}
func (m *RepackIncrementalRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackIncrementalRequest.Unmarshal(m, b)
@@ -214,7 +214,7 @@ func (m *RepackIncrementalResponse) Reset() { *m = RepackIncrementalResp
func (m *RepackIncrementalResponse) String() string { return proto.CompactTextString(m) }
func (*RepackIncrementalResponse) ProtoMessage() {}
func (*RepackIncrementalResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{3}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{3}
}
func (m *RepackIncrementalResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackIncrementalResponse.Unmarshal(m, b)
@@ -246,7 +246,7 @@ func (m *RepackFullRequest) Reset() { *m = RepackFullRequest{} }
func (m *RepackFullRequest) String() string { return proto.CompactTextString(m) }
func (*RepackFullRequest) ProtoMessage() {}
func (*RepackFullRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{4}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{4}
}
func (m *RepackFullRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackFullRequest.Unmarshal(m, b)
@@ -290,7 +290,7 @@ func (m *RepackFullResponse) Reset() { *m = RepackFullResponse{} }
func (m *RepackFullResponse) String() string { return proto.CompactTextString(m) }
func (*RepackFullResponse) ProtoMessage() {}
func (*RepackFullResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{5}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{5}
}
func (m *RepackFullResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackFullResponse.Unmarshal(m, b)
@@ -322,7 +322,7 @@ func (m *GarbageCollectRequest) Reset() { *m = GarbageCollectRequest{} }
func (m *GarbageCollectRequest) String() string { return proto.CompactTextString(m) }
func (*GarbageCollectRequest) ProtoMessage() {}
func (*GarbageCollectRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{6}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{6}
}
func (m *GarbageCollectRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GarbageCollectRequest.Unmarshal(m, b)
@@ -366,7 +366,7 @@ func (m *GarbageCollectResponse) Reset() { *m = GarbageCollectResponse{}
func (m *GarbageCollectResponse) String() string { return proto.CompactTextString(m) }
func (*GarbageCollectResponse) ProtoMessage() {}
func (*GarbageCollectResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{7}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{7}
}
func (m *GarbageCollectResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GarbageCollectResponse.Unmarshal(m, b)
@@ -397,7 +397,7 @@ func (m *CleanupRequest) Reset() { *m = CleanupRequest{} }
func (m *CleanupRequest) String() string { return proto.CompactTextString(m) }
func (*CleanupRequest) ProtoMessage() {}
func (*CleanupRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{8}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{8}
}
func (m *CleanupRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CleanupRequest.Unmarshal(m, b)
@@ -434,7 +434,7 @@ func (m *CleanupResponse) Reset() { *m = CleanupResponse{} }
func (m *CleanupResponse) String() string { return proto.CompactTextString(m) }
func (*CleanupResponse) ProtoMessage() {}
func (*CleanupResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{9}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{9}
}
func (m *CleanupResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CleanupResponse.Unmarshal(m, b)
@@ -465,7 +465,7 @@ func (m *RepositorySizeRequest) Reset() { *m = RepositorySizeRequest{} }
func (m *RepositorySizeRequest) String() string { return proto.CompactTextString(m) }
func (*RepositorySizeRequest) ProtoMessage() {}
func (*RepositorySizeRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{10}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{10}
}
func (m *RepositorySizeRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositorySizeRequest.Unmarshal(m, b)
@@ -504,7 +504,7 @@ func (m *RepositorySizeResponse) Reset() { *m = RepositorySizeResponse{}
func (m *RepositorySizeResponse) String() string { return proto.CompactTextString(m) }
func (*RepositorySizeResponse) ProtoMessage() {}
func (*RepositorySizeResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{11}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{11}
}
func (m *RepositorySizeResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositorySizeResponse.Unmarshal(m, b)
@@ -543,7 +543,7 @@ func (m *ApplyGitattributesRequest) Reset() { *m = ApplyGitattributesReq
func (m *ApplyGitattributesRequest) String() string { return proto.CompactTextString(m) }
func (*ApplyGitattributesRequest) ProtoMessage() {}
func (*ApplyGitattributesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{12}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{12}
}
func (m *ApplyGitattributesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplyGitattributesRequest.Unmarshal(m, b)
@@ -587,7 +587,7 @@ func (m *ApplyGitattributesResponse) Reset() { *m = ApplyGitattributesRe
func (m *ApplyGitattributesResponse) String() string { return proto.CompactTextString(m) }
func (*ApplyGitattributesResponse) ProtoMessage() {}
func (*ApplyGitattributesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{13}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{13}
}
func (m *ApplyGitattributesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplyGitattributesResponse.Unmarshal(m, b)
@@ -626,7 +626,7 @@ func (m *FetchRemoteRequest) Reset() { *m = FetchRemoteRequest{} }
func (m *FetchRemoteRequest) String() string { return proto.CompactTextString(m) }
func (*FetchRemoteRequest) ProtoMessage() {}
func (*FetchRemoteRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{14}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{14}
}
func (m *FetchRemoteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchRemoteRequest.Unmarshal(m, b)
@@ -719,7 +719,7 @@ func (m *FetchRemoteResponse) Reset() { *m = FetchRemoteResponse{} }
func (m *FetchRemoteResponse) String() string { return proto.CompactTextString(m) }
func (*FetchRemoteResponse) ProtoMessage() {}
func (*FetchRemoteResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{15}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{15}
}
func (m *FetchRemoteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchRemoteResponse.Unmarshal(m, b)
@@ -750,7 +750,7 @@ func (m *CreateRepositoryRequest) Reset() { *m = CreateRepositoryRequest
func (m *CreateRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryRequest) ProtoMessage() {}
func (*CreateRepositoryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{16}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{16}
}
func (m *CreateRepositoryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryRequest.Unmarshal(m, b)
@@ -787,7 +787,7 @@ func (m *CreateRepositoryResponse) Reset() { *m = CreateRepositoryRespon
func (m *CreateRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryResponse) ProtoMessage() {}
func (*CreateRepositoryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{17}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{17}
}
func (m *CreateRepositoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryResponse.Unmarshal(m, b)
@@ -822,7 +822,7 @@ func (m *GetArchiveRequest) Reset() { *m = GetArchiveRequest{} }
func (m *GetArchiveRequest) String() string { return proto.CompactTextString(m) }
func (*GetArchiveRequest) ProtoMessage() {}
func (*GetArchiveRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{18}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{18}
}
func (m *GetArchiveRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetArchiveRequest.Unmarshal(m, b)
@@ -888,7 +888,7 @@ func (m *GetArchiveResponse) Reset() { *m = GetArchiveResponse{} }
func (m *GetArchiveResponse) String() string { return proto.CompactTextString(m) }
func (*GetArchiveResponse) ProtoMessage() {}
func (*GetArchiveResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{19}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{19}
}
func (m *GetArchiveResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetArchiveResponse.Unmarshal(m, b)
@@ -926,7 +926,7 @@ func (m *HasLocalBranchesRequest) Reset() { *m = HasLocalBranchesRequest
func (m *HasLocalBranchesRequest) String() string { return proto.CompactTextString(m) }
func (*HasLocalBranchesRequest) ProtoMessage() {}
func (*HasLocalBranchesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{20}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{20}
}
func (m *HasLocalBranchesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HasLocalBranchesRequest.Unmarshal(m, b)
@@ -964,7 +964,7 @@ func (m *HasLocalBranchesResponse) Reset() { *m = HasLocalBranchesRespon
func (m *HasLocalBranchesResponse) String() string { return proto.CompactTextString(m) }
func (*HasLocalBranchesResponse) ProtoMessage() {}
func (*HasLocalBranchesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{21}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{21}
}
func (m *HasLocalBranchesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HasLocalBranchesResponse.Unmarshal(m, b)
@@ -1005,7 +1005,7 @@ func (m *FetchSourceBranchRequest) Reset() { *m = FetchSourceBranchReque
func (m *FetchSourceBranchRequest) String() string { return proto.CompactTextString(m) }
func (*FetchSourceBranchRequest) ProtoMessage() {}
func (*FetchSourceBranchRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{22}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{22}
}
func (m *FetchSourceBranchRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchSourceBranchRequest.Unmarshal(m, b)
@@ -1064,7 +1064,7 @@ func (m *FetchSourceBranchResponse) Reset() { *m = FetchSourceBranchResp
func (m *FetchSourceBranchResponse) String() string { return proto.CompactTextString(m) }
func (*FetchSourceBranchResponse) ProtoMessage() {}
func (*FetchSourceBranchResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{23}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{23}
}
func (m *FetchSourceBranchResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchSourceBranchResponse.Unmarshal(m, b)
@@ -1102,7 +1102,7 @@ func (m *FsckRequest) Reset() { *m = FsckRequest{} }
func (m *FsckRequest) String() string { return proto.CompactTextString(m) }
func (*FsckRequest) ProtoMessage() {}
func (*FsckRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{24}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{24}
}
func (m *FsckRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FsckRequest.Unmarshal(m, b)
@@ -1140,7 +1140,7 @@ func (m *FsckResponse) Reset() { *m = FsckResponse{} }
func (m *FsckResponse) String() string { return proto.CompactTextString(m) }
func (*FsckResponse) ProtoMessage() {}
func (*FsckResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{25}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{25}
}
func (m *FsckResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FsckResponse.Unmarshal(m, b)
@@ -1182,7 +1182,7 @@ func (m *WriteRefRequest) Reset() { *m = WriteRefRequest{} }
func (m *WriteRefRequest) String() string { return proto.CompactTextString(m) }
func (*WriteRefRequest) ProtoMessage() {}
func (*WriteRefRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{26}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{26}
}
func (m *WriteRefRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteRefRequest.Unmarshal(m, b)
@@ -1247,7 +1247,7 @@ func (m *WriteRefResponse) Reset() { *m = WriteRefResponse{} }
func (m *WriteRefResponse) String() string { return proto.CompactTextString(m) }
func (*WriteRefResponse) ProtoMessage() {}
func (*WriteRefResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{27}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{27}
}
func (m *WriteRefResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteRefResponse.Unmarshal(m, b)
@@ -1282,7 +1282,7 @@ func (m *FindMergeBaseRequest) Reset() { *m = FindMergeBaseRequest{} }
func (m *FindMergeBaseRequest) String() string { return proto.CompactTextString(m) }
func (*FindMergeBaseRequest) ProtoMessage() {}
func (*FindMergeBaseRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{28}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{28}
}
func (m *FindMergeBaseRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindMergeBaseRequest.Unmarshal(m, b)
@@ -1327,7 +1327,7 @@ func (m *FindMergeBaseResponse) Reset() { *m = FindMergeBaseResponse{} }
func (m *FindMergeBaseResponse) String() string { return proto.CompactTextString(m) }
func (*FindMergeBaseResponse) ProtoMessage() {}
func (*FindMergeBaseResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{29}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{29}
}
func (m *FindMergeBaseResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindMergeBaseResponse.Unmarshal(m, b)
@@ -1366,7 +1366,7 @@ func (m *CreateForkRequest) Reset() { *m = CreateForkRequest{} }
func (m *CreateForkRequest) String() string { return proto.CompactTextString(m) }
func (*CreateForkRequest) ProtoMessage() {}
func (*CreateForkRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{30}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{30}
}
func (m *CreateForkRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateForkRequest.Unmarshal(m, b)
@@ -1410,7 +1410,7 @@ func (m *CreateForkResponse) Reset() { *m = CreateForkResponse{} }
func (m *CreateForkResponse) String() string { return proto.CompactTextString(m) }
func (*CreateForkResponse) ProtoMessage() {}
func (*CreateForkResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{31}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{31}
}
func (m *CreateForkResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateForkResponse.Unmarshal(m, b)
@@ -1442,7 +1442,7 @@ func (m *IsRebaseInProgressRequest) Reset() { *m = IsRebaseInProgressReq
func (m *IsRebaseInProgressRequest) String() string { return proto.CompactTextString(m) }
func (*IsRebaseInProgressRequest) ProtoMessage() {}
func (*IsRebaseInProgressRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{32}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{32}
}
func (m *IsRebaseInProgressRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsRebaseInProgressRequest.Unmarshal(m, b)
@@ -1487,7 +1487,7 @@ func (m *IsRebaseInProgressResponse) Reset() { *m = IsRebaseInProgressRe
func (m *IsRebaseInProgressResponse) String() string { return proto.CompactTextString(m) }
func (*IsRebaseInProgressResponse) ProtoMessage() {}
func (*IsRebaseInProgressResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{33}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{33}
}
func (m *IsRebaseInProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsRebaseInProgressResponse.Unmarshal(m, b)
@@ -1526,7 +1526,7 @@ func (m *IsSquashInProgressRequest) Reset() { *m = IsSquashInProgressReq
func (m *IsSquashInProgressRequest) String() string { return proto.CompactTextString(m) }
func (*IsSquashInProgressRequest) ProtoMessage() {}
func (*IsSquashInProgressRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{34}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{34}
}
func (m *IsSquashInProgressRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsSquashInProgressRequest.Unmarshal(m, b)
@@ -1571,7 +1571,7 @@ func (m *IsSquashInProgressResponse) Reset() { *m = IsSquashInProgressRe
func (m *IsSquashInProgressResponse) String() string { return proto.CompactTextString(m) }
func (*IsSquashInProgressResponse) ProtoMessage() {}
func (*IsSquashInProgressResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{35}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{35}
}
func (m *IsSquashInProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsSquashInProgressResponse.Unmarshal(m, b)
@@ -1610,7 +1610,7 @@ func (m *CreateRepositoryFromURLRequest) Reset() { *m = CreateRepository
func (m *CreateRepositoryFromURLRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromURLRequest) ProtoMessage() {}
func (*CreateRepositoryFromURLRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{36}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{36}
}
func (m *CreateRepositoryFromURLRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromURLRequest.Unmarshal(m, b)
@@ -1654,7 +1654,7 @@ func (m *CreateRepositoryFromURLResponse) Reset() { *m = CreateRepositor
func (m *CreateRepositoryFromURLResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromURLResponse) ProtoMessage() {}
func (*CreateRepositoryFromURLResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{37}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{37}
}
func (m *CreateRepositoryFromURLResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromURLResponse.Unmarshal(m, b)
@@ -1685,7 +1685,7 @@ func (m *CreateBundleRequest) Reset() { *m = CreateBundleRequest{} }
func (m *CreateBundleRequest) String() string { return proto.CompactTextString(m) }
func (*CreateBundleRequest) ProtoMessage() {}
func (*CreateBundleRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{38}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{38}
}
func (m *CreateBundleRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateBundleRequest.Unmarshal(m, b)
@@ -1723,7 +1723,7 @@ func (m *CreateBundleResponse) Reset() { *m = CreateBundleResponse{} }
func (m *CreateBundleResponse) String() string { return proto.CompactTextString(m) }
func (*CreateBundleResponse) ProtoMessage() {}
func (*CreateBundleResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{39}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{39}
}
func (m *CreateBundleResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateBundleResponse.Unmarshal(m, b)
@@ -1762,7 +1762,7 @@ func (m *WriteConfigRequest) Reset() { *m = WriteConfigRequest{} }
func (m *WriteConfigRequest) String() string { return proto.CompactTextString(m) }
func (*WriteConfigRequest) ProtoMessage() {}
func (*WriteConfigRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{40}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{40}
}
func (m *WriteConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteConfigRequest.Unmarshal(m, b)
@@ -1807,7 +1807,7 @@ func (m *WriteConfigResponse) Reset() { *m = WriteConfigResponse{} }
func (m *WriteConfigResponse) String() string { return proto.CompactTextString(m) }
func (*WriteConfigResponse) ProtoMessage() {}
func (*WriteConfigResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{41}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{41}
}
func (m *WriteConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteConfigResponse.Unmarshal(m, b)
@@ -1846,7 +1846,7 @@ func (m *SetConfigRequest) Reset() { *m = SetConfigRequest{} }
func (m *SetConfigRequest) String() string { return proto.CompactTextString(m) }
func (*SetConfigRequest) ProtoMessage() {}
func (*SetConfigRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{42}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{42}
}
func (m *SetConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigRequest.Unmarshal(m, b)
@@ -1896,7 +1896,7 @@ func (m *SetConfigRequest_Entry) Reset() { *m = SetConfigRequest_Entry{}
func (m *SetConfigRequest_Entry) String() string { return proto.CompactTextString(m) }
func (*SetConfigRequest_Entry) ProtoMessage() {}
func (*SetConfigRequest_Entry) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{42, 0}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{42, 0}
}
func (m *SetConfigRequest_Entry) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigRequest_Entry.Unmarshal(m, b)
@@ -2066,7 +2066,7 @@ func (m *SetConfigResponse) Reset() { *m = SetConfigResponse{} }
func (m *SetConfigResponse) String() string { return proto.CompactTextString(m) }
func (*SetConfigResponse) ProtoMessage() {}
func (*SetConfigResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{43}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{43}
}
func (m *SetConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigResponse.Unmarshal(m, b)
@@ -2098,7 +2098,7 @@ func (m *DeleteConfigRequest) Reset() { *m = DeleteConfigRequest{} }
func (m *DeleteConfigRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteConfigRequest) ProtoMessage() {}
func (*DeleteConfigRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{44}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{44}
}
func (m *DeleteConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteConfigRequest.Unmarshal(m, b)
@@ -2142,7 +2142,7 @@ func (m *DeleteConfigResponse) Reset() { *m = DeleteConfigResponse{} }
func (m *DeleteConfigResponse) String() string { return proto.CompactTextString(m) }
func (*DeleteConfigResponse) ProtoMessage() {}
func (*DeleteConfigResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{45}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{45}
}
func (m *DeleteConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteConfigResponse.Unmarshal(m, b)
@@ -2174,7 +2174,7 @@ func (m *RestoreCustomHooksRequest) Reset() { *m = RestoreCustomHooksReq
func (m *RestoreCustomHooksRequest) String() string { return proto.CompactTextString(m) }
func (*RestoreCustomHooksRequest) ProtoMessage() {}
func (*RestoreCustomHooksRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{46}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{46}
}
func (m *RestoreCustomHooksRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RestoreCustomHooksRequest.Unmarshal(m, b)
@@ -2218,7 +2218,7 @@ func (m *RestoreCustomHooksResponse) Reset() { *m = RestoreCustomHooksRe
func (m *RestoreCustomHooksResponse) String() string { return proto.CompactTextString(m) }
func (*RestoreCustomHooksResponse) ProtoMessage() {}
func (*RestoreCustomHooksResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{47}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{47}
}
func (m *RestoreCustomHooksResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RestoreCustomHooksResponse.Unmarshal(m, b)
@@ -2249,7 +2249,7 @@ func (m *BackupCustomHooksRequest) Reset() { *m = BackupCustomHooksReque
func (m *BackupCustomHooksRequest) String() string { return proto.CompactTextString(m) }
func (*BackupCustomHooksRequest) ProtoMessage() {}
func (*BackupCustomHooksRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{48}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{48}
}
func (m *BackupCustomHooksRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BackupCustomHooksRequest.Unmarshal(m, b)
@@ -2287,7 +2287,7 @@ func (m *BackupCustomHooksResponse) Reset() { *m = BackupCustomHooksResp
func (m *BackupCustomHooksResponse) String() string { return proto.CompactTextString(m) }
func (*BackupCustomHooksResponse) ProtoMessage() {}
func (*BackupCustomHooksResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{49}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{49}
}
func (m *BackupCustomHooksResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BackupCustomHooksResponse.Unmarshal(m, b)
@@ -2327,7 +2327,7 @@ func (m *CreateRepositoryFromBundleRequest) Reset() { *m = CreateReposit
func (m *CreateRepositoryFromBundleRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromBundleRequest) ProtoMessage() {}
func (*CreateRepositoryFromBundleRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{50}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{50}
}
func (m *CreateRepositoryFromBundleRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromBundleRequest.Unmarshal(m, b)
@@ -2371,7 +2371,7 @@ func (m *CreateRepositoryFromBundleResponse) Reset() { *m = CreateReposi
func (m *CreateRepositoryFromBundleResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromBundleResponse) ProtoMessage() {}
func (*CreateRepositoryFromBundleResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{51}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{51}
}
func (m *CreateRepositoryFromBundleResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromBundleResponse.Unmarshal(m, b)
@@ -2402,7 +2402,7 @@ func (m *FindLicenseRequest) Reset() { *m = FindLicenseRequest{} }
func (m *FindLicenseRequest) String() string { return proto.CompactTextString(m) }
func (*FindLicenseRequest) ProtoMessage() {}
func (*FindLicenseRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{52}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{52}
}
func (m *FindLicenseRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindLicenseRequest.Unmarshal(m, b)
@@ -2440,7 +2440,7 @@ func (m *FindLicenseResponse) Reset() { *m = FindLicenseResponse{} }
func (m *FindLicenseResponse) String() string { return proto.CompactTextString(m) }
func (*FindLicenseResponse) ProtoMessage() {}
func (*FindLicenseResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{53}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{53}
}
func (m *FindLicenseResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindLicenseResponse.Unmarshal(m, b)
@@ -2478,7 +2478,7 @@ func (m *GetInfoAttributesRequest) Reset() { *m = GetInfoAttributesReque
func (m *GetInfoAttributesRequest) String() string { return proto.CompactTextString(m) }
func (*GetInfoAttributesRequest) ProtoMessage() {}
func (*GetInfoAttributesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{54}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{54}
}
func (m *GetInfoAttributesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfoAttributesRequest.Unmarshal(m, b)
@@ -2516,7 +2516,7 @@ func (m *GetInfoAttributesResponse) Reset() { *m = GetInfoAttributesResp
func (m *GetInfoAttributesResponse) String() string { return proto.CompactTextString(m) }
func (*GetInfoAttributesResponse) ProtoMessage() {}
func (*GetInfoAttributesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{55}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{55}
}
func (m *GetInfoAttributesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfoAttributesResponse.Unmarshal(m, b)
@@ -2554,7 +2554,7 @@ func (m *CalculateChecksumRequest) Reset() { *m = CalculateChecksumReque
func (m *CalculateChecksumRequest) String() string { return proto.CompactTextString(m) }
func (*CalculateChecksumRequest) ProtoMessage() {}
func (*CalculateChecksumRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{56}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{56}
}
func (m *CalculateChecksumRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CalculateChecksumRequest.Unmarshal(m, b)
@@ -2592,7 +2592,7 @@ func (m *CalculateChecksumResponse) Reset() { *m = CalculateChecksumResp
func (m *CalculateChecksumResponse) String() string { return proto.CompactTextString(m) }
func (*CalculateChecksumResponse) ProtoMessage() {}
func (*CalculateChecksumResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{57}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{57}
}
func (m *CalculateChecksumResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CalculateChecksumResponse.Unmarshal(m, b)
@@ -2630,7 +2630,7 @@ func (m *GetSnapshotRequest) Reset() { *m = GetSnapshotRequest{} }
func (m *GetSnapshotRequest) String() string { return proto.CompactTextString(m) }
func (*GetSnapshotRequest) ProtoMessage() {}
func (*GetSnapshotRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{58}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{58}
}
func (m *GetSnapshotRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetSnapshotRequest.Unmarshal(m, b)
@@ -2668,7 +2668,7 @@ func (m *GetSnapshotResponse) Reset() { *m = GetSnapshotResponse{} }
func (m *GetSnapshotResponse) String() string { return proto.CompactTextString(m) }
func (*GetSnapshotResponse) ProtoMessage() {}
func (*GetSnapshotResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{59}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{59}
}
func (m *GetSnapshotResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetSnapshotResponse.Unmarshal(m, b)
@@ -2708,7 +2708,7 @@ func (m *CreateRepositoryFromSnapshotRequest) Reset() { *m = CreateRepos
func (m *CreateRepositoryFromSnapshotRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromSnapshotRequest) ProtoMessage() {}
func (*CreateRepositoryFromSnapshotRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{60}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{60}
}
func (m *CreateRepositoryFromSnapshotRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromSnapshotRequest.Unmarshal(m, b)
@@ -2759,7 +2759,7 @@ func (m *CreateRepositoryFromSnapshotResponse) Reset() { *m = CreateRepo
func (m *CreateRepositoryFromSnapshotResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromSnapshotResponse) ProtoMessage() {}
func (*CreateRepositoryFromSnapshotResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{61}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{61}
}
func (m *CreateRepositoryFromSnapshotResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromSnapshotResponse.Unmarshal(m, b)
@@ -2792,7 +2792,7 @@ func (m *GetRawChangesRequest) Reset() { *m = GetRawChangesRequest{} }
func (m *GetRawChangesRequest) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesRequest) ProtoMessage() {}
func (*GetRawChangesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{62}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{62}
}
func (m *GetRawChangesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesRequest.Unmarshal(m, b)
@@ -2844,7 +2844,7 @@ func (m *GetRawChangesResponse) Reset() { *m = GetRawChangesResponse{} }
func (m *GetRawChangesResponse) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesResponse) ProtoMessage() {}
func (*GetRawChangesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{63}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{63}
}
func (m *GetRawChangesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesResponse.Unmarshal(m, b)
@@ -2872,24 +2872,28 @@ func (m *GetRawChangesResponse) GetRawChanges() []*GetRawChangesResponse_RawChan
}
type GetRawChangesResponse_RawChange struct {
- BlobId string `protobuf:"bytes,1,opt,name=blob_id,json=blobId,proto3" json:"blob_id,omitempty"`
- Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
- NewPath string `protobuf:"bytes,3,opt,name=new_path,json=newPath,proto3" json:"new_path,omitempty"`
- OldPath string `protobuf:"bytes,4,opt,name=old_path,json=oldPath,proto3" json:"old_path,omitempty"`
- Operation GetRawChangesResponse_RawChange_Operation `protobuf:"varint,5,opt,name=operation,proto3,enum=gitaly.GetRawChangesResponse_RawChange_Operation" json:"operation,omitempty"`
- RawOperation string `protobuf:"bytes,6,opt,name=raw_operation,json=rawOperation,proto3" json:"raw_operation,omitempty"`
- OldMode int32 `protobuf:"varint,7,opt,name=old_mode,json=oldMode,proto3" json:"old_mode,omitempty"`
- NewMode int32 `protobuf:"varint,8,opt,name=new_mode,json=newMode,proto3" json:"new_mode,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ BlobId string `protobuf:"bytes,1,opt,name=blob_id,json=blobId,proto3" json:"blob_id,omitempty"`
+ Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
+ // use fields 9 and 10 in place of 3 and 4 (respectively)
+ NewPath string `protobuf:"bytes,3,opt,name=new_path,json=newPath,proto3" json:"new_path,omitempty"` // Deprecated: Do not use.
+ OldPath string `protobuf:"bytes,4,opt,name=old_path,json=oldPath,proto3" json:"old_path,omitempty"` // Deprecated: Do not use.
+ Operation GetRawChangesResponse_RawChange_Operation `protobuf:"varint,5,opt,name=operation,proto3,enum=gitaly.GetRawChangesResponse_RawChange_Operation" json:"operation,omitempty"`
+ RawOperation string `protobuf:"bytes,6,opt,name=raw_operation,json=rawOperation,proto3" json:"raw_operation,omitempty"`
+ OldMode int32 `protobuf:"varint,7,opt,name=old_mode,json=oldMode,proto3" json:"old_mode,omitempty"`
+ NewMode int32 `protobuf:"varint,8,opt,name=new_mode,json=newMode,proto3" json:"new_mode,omitempty"`
+ // the following fields, 9 and 10, will eventually replace 3 and 4
+ NewPathBytes []byte `protobuf:"bytes,9,opt,name=new_path_bytes,json=newPathBytes,proto3" json:"new_path_bytes,omitempty"`
+ OldPathBytes []byte `protobuf:"bytes,10,opt,name=old_path_bytes,json=oldPathBytes,proto3" json:"old_path_bytes,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *GetRawChangesResponse_RawChange) Reset() { *m = GetRawChangesResponse_RawChange{} }
func (m *GetRawChangesResponse_RawChange) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesResponse_RawChange) ProtoMessage() {}
func (*GetRawChangesResponse_RawChange) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{63, 0}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{63, 0}
}
func (m *GetRawChangesResponse_RawChange) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesResponse_RawChange.Unmarshal(m, b)
@@ -2923,6 +2927,7 @@ func (m *GetRawChangesResponse_RawChange) GetSize() int64 {
return 0
}
+// Deprecated: Do not use.
func (m *GetRawChangesResponse_RawChange) GetNewPath() string {
if m != nil {
return m.NewPath
@@ -2930,6 +2935,7 @@ func (m *GetRawChangesResponse_RawChange) GetNewPath() string {
return ""
}
+// Deprecated: Do not use.
func (m *GetRawChangesResponse_RawChange) GetOldPath() string {
if m != nil {
return m.OldPath
@@ -2965,6 +2971,20 @@ func (m *GetRawChangesResponse_RawChange) GetNewMode() int32 {
return 0
}
+func (m *GetRawChangesResponse_RawChange) GetNewPathBytes() []byte {
+ if m != nil {
+ return m.NewPathBytes
+ }
+ return nil
+}
+
+func (m *GetRawChangesResponse_RawChange) GetOldPathBytes() []byte {
+ if m != nil {
+ return m.OldPathBytes
+ }
+ return nil
+}
+
type SearchFilesByNameRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
Query string `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
@@ -2978,7 +2998,7 @@ func (m *SearchFilesByNameRequest) Reset() { *m = SearchFilesByNameReque
func (m *SearchFilesByNameRequest) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByNameRequest) ProtoMessage() {}
func (*SearchFilesByNameRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{64}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{64}
}
func (m *SearchFilesByNameRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByNameRequest.Unmarshal(m, b)
@@ -3030,7 +3050,7 @@ func (m *SearchFilesByNameResponse) Reset() { *m = SearchFilesByNameResp
func (m *SearchFilesByNameResponse) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByNameResponse) ProtoMessage() {}
func (*SearchFilesByNameResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{65}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{65}
}
func (m *SearchFilesByNameResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByNameResponse.Unmarshal(m, b)
@@ -3071,7 +3091,7 @@ func (m *SearchFilesByContentRequest) Reset() { *m = SearchFilesByConten
func (m *SearchFilesByContentRequest) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByContentRequest) ProtoMessage() {}
func (*SearchFilesByContentRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{66}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{66}
}
func (m *SearchFilesByContentRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByContentRequest.Unmarshal(m, b)
@@ -3132,7 +3152,7 @@ func (m *SearchFilesByContentResponse) Reset() { *m = SearchFilesByConte
func (m *SearchFilesByContentResponse) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByContentResponse) ProtoMessage() {}
func (*SearchFilesByContentResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{67}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{67}
}
func (m *SearchFilesByContentResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByContentResponse.Unmarshal(m, b)
@@ -3186,7 +3206,7 @@ func (m *PreFetchRequest) Reset() { *m = PreFetchRequest{} }
func (m *PreFetchRequest) String() string { return proto.CompactTextString(m) }
func (*PreFetchRequest) ProtoMessage() {}
func (*PreFetchRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{68}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{68}
}
func (m *PreFetchRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PreFetchRequest.Unmarshal(m, b)
@@ -3237,7 +3257,7 @@ func (m *PreFetchResponse) Reset() { *m = PreFetchResponse{} }
func (m *PreFetchResponse) String() string { return proto.CompactTextString(m) }
func (*PreFetchResponse) ProtoMessage() {}
func (*PreFetchResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{69}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{69}
}
func (m *PreFetchResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PreFetchResponse.Unmarshal(m, b)
@@ -3271,7 +3291,7 @@ func (m *Remote) Reset() { *m = Remote{} }
func (m *Remote) String() string { return proto.CompactTextString(m) }
func (*Remote) ProtoMessage() {}
func (*Remote) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{70}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{70}
}
func (m *Remote) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Remote.Unmarshal(m, b)
@@ -3332,7 +3352,7 @@ func (m *FetchHTTPRemoteRequest) Reset() { *m = FetchHTTPRemoteRequest{}
func (m *FetchHTTPRemoteRequest) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteRequest) ProtoMessage() {}
func (*FetchHTTPRemoteRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{71}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{71}
}
func (m *FetchHTTPRemoteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchHTTPRemoteRequest.Unmarshal(m, b)
@@ -3383,7 +3403,7 @@ func (m *FetchHTTPRemoteResponse) Reset() { *m = FetchHTTPRemoteResponse
func (m *FetchHTTPRemoteResponse) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteResponse) ProtoMessage() {}
func (*FetchHTTPRemoteResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_d0afec370e972965, []int{72}
+ return fileDescriptor_repository_service_d00c9438dcbaa535, []int{72}
}
func (m *FetchHTTPRemoteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchHTTPRemoteResponse.Unmarshal(m, b)
@@ -4996,179 +5016,182 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
}
func init() {
- proto.RegisterFile("repository-service.proto", fileDescriptor_repository_service_d0afec370e972965)
-}
-
-var fileDescriptor_repository_service_d0afec370e972965 = []byte{
- // 2720 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcd, 0x72, 0xdb, 0xc8,
- 0xf1, 0x37, 0x45, 0x49, 0x24, 0x9b, 0xb4, 0x4d, 0x8d, 0x64, 0x8b, 0x84, 0x65, 0xcb, 0x86, 0xfd,
- 0xdf, 0xf5, 0x7e, 0xc9, 0x5e, 0xe9, 0xf0, 0xdf, 0x24, 0x95, 0xda, 0xd2, 0x07, 0xf5, 0xb1, 0xb6,
- 0x3e, 0x02, 0x69, 0xb3, 0x15, 0x57, 0x6d, 0x21, 0x20, 0x38, 0x14, 0x11, 0x82, 0x18, 0xee, 0x60,
- 0x68, 0xad, 0x5c, 0x95, 0x43, 0x0e, 0x5b, 0xb5, 0xa7, 0x54, 0xf6, 0x94, 0x17, 0xc8, 0x13, 0xe4,
- 0x96, 0x37, 0xc8, 0x3d, 0x6f, 0x90, 0x5b, 0x5e, 0x21, 0x97, 0xa4, 0x66, 0x06, 0xc0, 0x00, 0x04,
- 0xc0, 0x38, 0x05, 0x27, 0xb9, 0x61, 0xba, 0x67, 0xba, 0x7b, 0x7a, 0xa6, 0x7b, 0xa6, 0x7f, 0x03,
- 0x68, 0x51, 0x3c, 0x26, 0xbe, 0xc3, 0x08, 0xbd, 0xfe, 0xc4, 0xc7, 0xf4, 0xb5, 0x63, 0xe3, 0x8d,
- 0x31, 0x25, 0x8c, 0xa0, 0xc5, 0x4b, 0x87, 0x59, 0xee, 0xb5, 0xd6, 0xf0, 0x07, 0x16, 0xc5, 0x3d,
- 0x49, 0xd5, 0x8f, 0x61, 0xd5, 0x88, 0x46, 0x74, 0xbe, 0x75, 0x7c, 0xe6, 0x1b, 0xf8, 0x9b, 0x09,
- 0xf6, 0x19, 0xda, 0x04, 0x50, 0xc2, 0x5a, 0xa5, 0x87, 0xa5, 0xa7, 0xf5, 0x4d, 0xb4, 0x21, 0xa5,
- 0x6c, 0xa8, 0x41, 0x46, 0xac, 0x97, 0xbe, 0x09, 0xad, 0xb4, 0x38, 0x7f, 0x4c, 0x3c, 0x1f, 0xa3,
- 0xbb, 0xb0, 0x88, 0x05, 0x45, 0xc8, 0xaa, 0x1a, 0x41, 0x4b, 0x3f, 0x11, 0x63, 0x2c, 0x7b, 0x78,
- 0xe4, 0xd9, 0x14, 0x8f, 0xb0, 0xc7, 0x2c, 0xb7, 0x88, 0x0d, 0xf7, 0xa0, 0x9d, 0x21, 0x4f, 0x1a,
- 0xa1, 0xbb, 0xb0, 0x24, 0x99, 0xfb, 0x13, 0xb7, 0x88, 0x16, 0xf4, 0x18, 0x6e, 0xda, 0x14, 0x5b,
- 0x0c, 0x9b, 0x5d, 0x87, 0x8d, 0xac, 0x71, 0x6b, 0x4e, 0x4c, 0xaa, 0x21, 0x89, 0x3b, 0x82, 0xa6,
- 0xaf, 0x00, 0x8a, 0x6b, 0x0b, 0x6c, 0x18, 0xc3, 0x9d, 0x03, 0x8b, 0x76, 0xad, 0x4b, 0xbc, 0x4b,
- 0x5c, 0x17, 0xdb, 0xec, 0x3f, 0x6e, 0x47, 0x0b, 0xee, 0x4e, 0x6b, 0x0c, 0x6c, 0xd9, 0x83, 0x5b,
- 0xbb, 0x2e, 0xb6, 0xbc, 0xc9, 0xb8, 0x88, 0xcb, 0x97, 0xe0, 0x76, 0x24, 0x25, 0x10, 0xfc, 0x02,
- 0xee, 0xa8, 0xce, 0xe7, 0xce, 0x1b, 0x5c, 0x44, 0xfe, 0xc7, 0x70, 0x77, 0x5a, 0x58, 0xb0, 0xa9,
- 0x10, 0xcc, 0xfb, 0xce, 0x1b, 0x2c, 0xe4, 0x94, 0x0d, 0xf1, 0xad, 0x0f, 0xa1, 0xbd, 0x3d, 0x1e,
- 0xbb, 0xd7, 0x07, 0x0e, 0xb3, 0x18, 0xa3, 0x4e, 0x77, 0xc2, 0x70, 0x91, 0x5d, 0x8d, 0x34, 0xa8,
- 0x52, 0xfc, 0xda, 0xf1, 0x1d, 0xe2, 0x09, 0xf7, 0x36, 0x8c, 0xa8, 0xad, 0xaf, 0x81, 0x96, 0xa5,
- 0x2c, 0xf0, 0xc2, 0x9f, 0xe6, 0x00, 0xed, 0x63, 0x66, 0x0f, 0x0c, 0x3c, 0x22, 0xac, 0x88, 0x0f,
- 0x78, 0xf8, 0x50, 0x21, 0x44, 0x98, 0x50, 0x33, 0x82, 0x16, 0x5a, 0x81, 0x85, 0x3e, 0xa1, 0x36,
- 0x6e, 0x95, 0xc5, 0xc2, 0xcb, 0x06, 0x5a, 0x85, 0x8a, 0x47, 0x4c, 0x66, 0x5d, 0xfa, 0xad, 0x79,
- 0x19, 0x6d, 0x1e, 0xb9, 0xb0, 0x2e, 0x7d, 0xd4, 0x82, 0x0a, 0x73, 0x46, 0x98, 0x4c, 0x58, 0x6b,
- 0xe1, 0x61, 0xe9, 0xe9, 0x82, 0x11, 0x36, 0xf9, 0x10, 0xdf, 0x1f, 0x98, 0x43, 0x7c, 0xdd, 0x5a,
- 0x94, 0x1a, 0x7c, 0x7f, 0xf0, 0x02, 0x5f, 0xa3, 0x75, 0xa8, 0x0f, 0x3d, 0x72, 0xe5, 0x99, 0x03,
- 0xc2, 0xa3, 0xb7, 0x22, 0x98, 0x20, 0x48, 0x87, 0x9c, 0x82, 0xda, 0x50, 0xf5, 0x88, 0x39, 0xa6,
- 0x13, 0x0f, 0xb7, 0x6a, 0x42, 0x5b, 0xc5, 0x23, 0x67, 0xbc, 0x89, 0xb6, 0xe0, 0xa6, 0xb4, 0xd3,
- 0x1c, 0x5b, 0xd4, 0x1a, 0xf9, 0x2d, 0x10, 0x93, 0xbd, 0xa5, 0x26, 0x2b, 0xfc, 0xd2, 0x90, 0x9d,
- 0xce, 0x44, 0x9f, 0x2f, 0xe6, 0xab, 0xd5, 0x66, 0x4d, 0xbf, 0x03, 0xcb, 0x09, 0xd7, 0x05, 0x2e,
- 0x3d, 0x86, 0xd5, 0x5d, 0xb1, 0xb7, 0x63, 0x7e, 0x2a, 0xb0, 0xb5, 0x34, 0x68, 0xa5, 0xc5, 0x05,
- 0xaa, 0xfe, 0x51, 0x82, 0xa5, 0x03, 0xcc, 0xb6, 0xa9, 0x3d, 0x70, 0x5e, 0x17, 0x5a, 0xbc, 0x7b,
- 0x50, 0xb3, 0xc9, 0x68, 0xe4, 0x30, 0xd3, 0xe9, 0x05, 0xeb, 0x57, 0x95, 0x84, 0xa3, 0x1e, 0x5f,
- 0xd9, 0x31, 0xc5, 0x7d, 0xe7, 0x5b, 0xb1, 0x84, 0x35, 0x23, 0x68, 0xa1, 0xcf, 0x60, 0xb1, 0x4f,
- 0xe8, 0xc8, 0x62, 0x62, 0x09, 0x6f, 0x6d, 0x3e, 0x0c, 0x95, 0xa4, 0x6c, 0xda, 0xd8, 0x17, 0xfd,
- 0x8c, 0xa0, 0x3f, 0x8f, 0x8a, 0xb1, 0xc5, 0x06, 0x62, 0x85, 0x1b, 0x86, 0xf8, 0xd6, 0xb7, 0x60,
- 0x51, 0xf6, 0x42, 0x15, 0x28, 0xbf, 0x3a, 0x3a, 0x6b, 0xde, 0xe0, 0x1f, 0x17, 0xdb, 0x46, 0xb3,
- 0x84, 0x00, 0x16, 0x2f, 0xb6, 0x0d, 0xf3, 0xe0, 0x55, 0x73, 0x0e, 0xd5, 0xa1, 0xc2, 0xbf, 0x77,
- 0x5e, 0x6d, 0x36, 0xcb, 0xfa, 0x53, 0x40, 0x71, 0x65, 0x2a, 0xe8, 0x7a, 0x16, 0xb3, 0xc4, 0xdc,
- 0x1b, 0x86, 0xf8, 0xe6, 0xcb, 0x72, 0x68, 0xf9, 0x2f, 0x89, 0x6d, 0xb9, 0x3b, 0xd4, 0xf2, 0xec,
- 0x41, 0xa1, 0x90, 0xd3, 0x9f, 0x43, 0x2b, 0x2d, 0x2e, 0x50, 0xbf, 0x02, 0x0b, 0xaf, 0x2d, 0x77,
- 0x82, 0x83, 0x73, 0x44, 0x36, 0xf4, 0xbf, 0x94, 0xa0, 0x25, 0xf6, 0xcb, 0x39, 0x99, 0x50, 0x1b,
- 0xcb, 0x51, 0x45, 0xd6, 0xec, 0x73, 0x58, 0xf2, 0x85, 0x28, 0x33, 0x36, 0x74, 0x2e, 0x77, 0x68,
- 0x53, 0x76, 0x36, 0x12, 0xa9, 0x39, 0x10, 0xd0, 0x15, 0xc6, 0x88, 0xe5, 0x6d, 0x18, 0x0d, 0x3f,
- 0x66, 0x20, 0xba, 0x0f, 0xc0, 0x2c, 0x7a, 0x89, 0x99, 0x49, 0x71, 0x5f, 0x2c, 0x74, 0xc3, 0xa8,
- 0x49, 0x8a, 0x81, 0xfb, 0xfa, 0x16, 0xb4, 0x33, 0x26, 0xa5, 0x4e, 0x54, 0x8a, 0xfd, 0x89, 0xcb,
- 0xc2, 0x13, 0x55, 0xb6, 0xf4, 0x6d, 0xa8, 0xef, 0xfb, 0xf6, 0xb0, 0x88, 0xff, 0x9f, 0x40, 0x43,
- 0x8a, 0x50, 0x3e, 0xc7, 0x94, 0x12, 0x1a, 0xac, 0xb9, 0x6c, 0xe8, 0x7f, 0x2c, 0xc1, 0xed, 0xaf,
- 0xa8, 0xc3, 0x83, 0xa7, 0x5f, 0xc4, 0xd5, 0x4d, 0x28, 0xf3, 0xd9, 0xcb, 0xdc, 0xca, 0x3f, 0x13,
- 0x29, 0xb7, 0x9c, 0x4c, 0xb9, 0xe8, 0x11, 0x34, 0x88, 0xdb, 0x33, 0x23, 0xbe, 0x74, 0x5a, 0x9d,
- 0xb8, 0x3d, 0x23, 0xec, 0x12, 0x25, 0xc5, 0x85, 0x58, 0x52, 0xfc, 0x62, 0xbe, 0xba, 0xd8, 0xac,
- 0xe8, 0x2d, 0x68, 0x2a, 0x9b, 0xe5, 0xf4, 0xbe, 0x98, 0xaf, 0x96, 0x9a, 0x73, 0xfa, 0x00, 0x56,
- 0xf6, 0x1d, 0xaf, 0x77, 0x8c, 0xe9, 0x25, 0xde, 0xb1, 0xfc, 0x42, 0x11, 0xbf, 0x06, 0xb5, 0xd0,
- 0x40, 0xbf, 0x35, 0xf7, 0xb0, 0xcc, 0x97, 0x35, 0x22, 0xe8, 0x1f, 0xc1, 0x9d, 0x29, 0x4d, 0x2a,
- 0xb4, 0xba, 0x96, 0x2f, 0xb7, 0x76, 0xcd, 0x10, 0xdf, 0xfa, 0xf7, 0x25, 0x58, 0x92, 0x39, 0x6a,
- 0x9f, 0xd0, 0xe1, 0xff, 0x72, 0x4b, 0xf3, 0x0b, 0x4d, 0xdc, 0x92, 0xe8, 0x52, 0xd5, 0x3e, 0xf2,
- 0x0d, 0xcc, 0x8d, 0x3d, 0xf2, 0xce, 0x28, 0xb9, 0xa4, 0xd8, 0xf7, 0x0b, 0xa6, 0x4b, 0x2a, 0xc4,
- 0xc5, 0xd2, 0xa5, 0x24, 0x1c, 0xf5, 0xf4, 0x9f, 0x82, 0x96, 0xa5, 0x2d, 0x70, 0xe0, 0x3a, 0xd4,
- 0x1d, 0xcf, 0x1c, 0x07, 0xe4, 0x20, 0x30, 0xc0, 0x89, 0x3a, 0x4a, 0x63, 0xcf, 0xbf, 0x99, 0x58,
- 0xfe, 0xe0, 0x9d, 0x19, 0xeb, 0x0b, 0x71, 0x31, 0x63, 0x25, 0x21, 0x34, 0x36, 0xad, 0xed, 0x6d,
- 0x8d, 0xed, 0xc3, 0x83, 0xe9, 0xd3, 0x69, 0x9f, 0x92, 0xd1, 0x97, 0xc6, 0xcb, 0x82, 0xe1, 0x36,
- 0xa1, 0x6e, 0x60, 0x2b, 0xff, 0xd4, 0x1f, 0xc1, 0x7a, 0xae, 0x9e, 0x60, 0x91, 0x8f, 0x60, 0x59,
- 0x76, 0xd9, 0x99, 0x78, 0x3d, 0xb7, 0xd0, 0x75, 0xee, 0x43, 0x58, 0x49, 0x8a, 0x9a, 0x71, 0xae,
- 0x60, 0x40, 0x22, 0x5a, 0x77, 0x89, 0xd7, 0x77, 0x2e, 0x0b, 0xae, 0x53, 0x7f, 0xe2, 0xba, 0xa6,
- 0x38, 0x19, 0x83, 0x75, 0xe2, 0x84, 0x33, 0x7e, 0x3a, 0x7e, 0x04, 0xcb, 0x09, 0x35, 0x33, 0xd3,
- 0xde, 0xf7, 0x73, 0xd0, 0x3c, 0xc7, 0xac, 0xb8, 0x49, 0x9f, 0x41, 0x05, 0x7b, 0x8c, 0x3a, 0x58,
- 0xa6, 0x88, 0xfa, 0xe6, 0x83, 0x70, 0xc0, 0xb4, 0xf8, 0x8d, 0x8e, 0xc7, 0xe8, 0xb5, 0x11, 0x76,
- 0xd7, 0xbe, 0x2b, 0xc1, 0x82, 0x20, 0xf1, 0xc5, 0xe4, 0x57, 0x36, 0x99, 0x30, 0xf8, 0x27, 0xba,
- 0x0f, 0x35, 0x71, 0x24, 0x9a, 0x3e, 0xa3, 0x72, 0xa2, 0x87, 0x37, 0x8c, 0xaa, 0x20, 0x9d, 0x33,
- 0x8a, 0x1e, 0x41, 0x5d, 0xb2, 0x1d, 0x8f, 0x6d, 0x6d, 0x8a, 0xec, 0xba, 0x70, 0x78, 0xc3, 0x00,
- 0x41, 0x3c, 0xe2, 0x34, 0xb4, 0x0e, 0xb2, 0x65, 0x76, 0x09, 0x71, 0xe5, 0x05, 0xf2, 0xf0, 0x86,
- 0x21, 0xa5, 0xee, 0x10, 0xe2, 0xee, 0x54, 0x82, 0x23, 0x58, 0x5f, 0x86, 0xa5, 0x98, 0xa9, 0xc1,
- 0x56, 0xf9, 0x1a, 0x96, 0xf7, 0xb0, 0x8b, 0xdf, 0xc5, 0xa2, 0x21, 0x98, 0x1f, 0xe2, 0x6b, 0xe9,
- 0x9e, 0x9a, 0x21, 0xbe, 0xf5, 0xbb, 0xb0, 0x92, 0x14, 0x1f, 0xa8, 0xb5, 0x79, 0xe1, 0xe7, 0x33,
- 0x42, 0xf1, 0xee, 0xc4, 0x67, 0x64, 0x74, 0x48, 0xc8, 0xd0, 0x2f, 0xa8, 0x5c, 0xec, 0xc7, 0xb9,
- 0xd8, 0x7e, 0x5c, 0x03, 0x2d, 0x4b, 0x49, 0x60, 0xc2, 0x09, 0xb4, 0x76, 0x2c, 0x7b, 0x38, 0x19,
- 0xbf, 0x1b, 0x0b, 0xf4, 0x67, 0xd0, 0xce, 0x90, 0x37, 0x23, 0x5c, 0x86, 0xf0, 0x28, 0x2b, 0x90,
- 0x0b, 0xc7, 0x6c, 0xa6, 0x2f, 0x9e, 0x80, 0x3e, 0x4b, 0x59, 0xe0, 0x93, 0x43, 0x40, 0xfc, 0xac,
- 0x7b, 0xe9, 0xd8, 0xd8, 0x2b, 0x74, 0xa6, 0xea, 0xbb, 0xb0, 0x9c, 0x90, 0x14, 0xf8, 0xe1, 0x63,
- 0x40, 0xae, 0x24, 0x99, 0xfe, 0x80, 0x50, 0x66, 0x7a, 0xd6, 0x28, 0x3c, 0x41, 0x9b, 0x01, 0xe7,
- 0x9c, 0x33, 0x4e, 0xac, 0x91, 0x58, 0xa2, 0x03, 0xcc, 0x8e, 0xbc, 0x3e, 0xd9, 0x7e, 0x17, 0xc5,
- 0xa1, 0xfe, 0x13, 0x68, 0x67, 0xc8, 0x0b, 0x4c, 0x7b, 0x00, 0xa0, 0xaa, 0xc2, 0x60, 0xa1, 0x62,
- 0x14, 0x6e, 0xcc, 0xae, 0xe5, 0xda, 0x13, 0xd7, 0x62, 0x78, 0x77, 0x80, 0xed, 0xa1, 0x3f, 0x19,
- 0x15, 0x31, 0xe6, 0xff, 0xa1, 0x9d, 0x21, 0x2f, 0x30, 0x46, 0x83, 0xaa, 0x1d, 0xd0, 0x02, 0xef,
- 0x44, 0x6d, 0xbe, 0x48, 0x07, 0x98, 0x9d, 0x7b, 0xd6, 0xd8, 0x1f, 0x90, 0x22, 0x80, 0x84, 0xfe,
- 0x01, 0x2c, 0x27, 0x24, 0xcd, 0xd8, 0xac, 0x3f, 0x94, 0xe0, 0x71, 0xd6, 0x06, 0x7a, 0x07, 0x66,
- 0xf0, 0x9a, 0x74, 0xc0, 0xd8, 0xd8, 0x54, 0x07, 0x5d, 0x85, 0xb7, 0xbf, 0xa4, 0x2e, 0x3f, 0x08,
- 0x04, 0xcb, 0x9a, 0xb0, 0x41, 0x50, 0x72, 0x89, 0xbe, 0xdb, 0x13, 0x36, 0xd0, 0xdf, 0x83, 0x27,
- 0xb3, 0x4d, 0x0a, 0x76, 0xf5, 0xef, 0x4a, 0xb0, 0x72, 0x80, 0x99, 0x61, 0x5d, 0xed, 0x0e, 0x2c,
- 0xef, 0xb2, 0x18, 0xc0, 0xf0, 0x18, 0x6e, 0xf6, 0x29, 0x19, 0x99, 0x09, 0x94, 0xa1, 0x66, 0x34,
- 0x38, 0x31, 0xba, 0xd3, 0xae, 0x43, 0x9d, 0x11, 0x33, 0x71, 0x2b, 0xae, 0x19, 0xc0, 0x48, 0xd8,
- 0x41, 0xff, 0x5b, 0x19, 0xee, 0x4c, 0x99, 0x14, 0x38, 0xff, 0x10, 0xea, 0xd4, 0xba, 0x32, 0x6d,
- 0x49, 0x6e, 0x95, 0xc4, 0x59, 0xf3, 0x7e, 0xac, 0x9c, 0x4c, 0x8f, 0xd9, 0x88, 0x48, 0x06, 0xd0,
- 0x88, 0xab, 0x7d, 0x57, 0x86, 0x5a, 0xc4, 0x41, 0xab, 0x50, 0xe9, 0xba, 0xa4, 0xcb, 0x2f, 0x3e,
- 0x72, 0x43, 0x2d, 0xf2, 0xe6, 0x51, 0x2f, 0x82, 0x65, 0xe6, 0x14, 0x2c, 0x23, 0x50, 0x02, 0x7c,
- 0x25, 0x8f, 0x5f, 0x69, 0x7c, 0xc5, 0xc3, 0x57, 0xfc, 0xf4, 0xe5, 0x2c, 0x7e, 0xa3, 0x17, 0xac,
- 0x79, 0xc9, 0x22, 0x6e, 0x4f, 0xb0, 0x4e, 0xa1, 0x46, 0xc6, 0x98, 0x5a, 0x8c, 0xcf, 0x79, 0x41,
- 0xd4, 0xc1, 0x9f, 0xbe, 0xa5, 0xe1, 0x1b, 0xa7, 0xe1, 0x40, 0x43, 0xc9, 0xe0, 0xbe, 0xe6, 0xbe,
- 0x50, 0x42, 0x25, 0xd8, 0xd1, 0xa0, 0xd6, 0x55, 0xd4, 0x3f, 0x34, 0x68, 0x44, 0x7a, 0x58, 0xe0,
- 0x1d, 0x0b, 0xc2, 0xa0, 0x63, 0xd2, 0x8b, 0xa6, 0x21, 0x58, 0x55, 0xc9, 0xf2, 0xf0, 0x15, 0x67,
- 0xe9, 0x0e, 0xd4, 0x94, 0x88, 0x3a, 0x54, 0xbe, 0x3c, 0x79, 0x71, 0x72, 0xfa, 0xd5, 0x49, 0xf3,
- 0x06, 0xaa, 0xc1, 0xc2, 0xf6, 0xde, 0x5e, 0x67, 0x4f, 0xd6, 0xda, 0xbb, 0xa7, 0x67, 0x47, 0x9d,
- 0x3d, 0x59, 0x6b, 0xef, 0x75, 0x5e, 0x76, 0x2e, 0x3a, 0x7b, 0xcd, 0x32, 0x6a, 0x40, 0xf5, 0xf8,
- 0x74, 0xef, 0x68, 0x9f, 0xb3, 0xe6, 0x39, 0xcb, 0xe8, 0x9c, 0x6c, 0x1f, 0x77, 0xf6, 0x9a, 0x0b,
- 0xa8, 0x09, 0x8d, 0x8b, 0x5f, 0x9c, 0x75, 0xcc, 0xdd, 0xc3, 0xed, 0x93, 0x83, 0xce, 0x5e, 0x73,
- 0x51, 0x7f, 0x0d, 0xad, 0x73, 0x6c, 0x51, 0x7b, 0xb0, 0xef, 0xb8, 0xd8, 0xdf, 0xb9, 0xe6, 0xa9,
- 0xad, 0xc8, 0x0e, 0x5c, 0x81, 0x85, 0x6f, 0x26, 0x38, 0xa8, 0x06, 0x6a, 0x86, 0x6c, 0x84, 0x75,
- 0x59, 0x39, 0xaa, 0xcb, 0xf4, 0x4f, 0xa1, 0x9d, 0xa1, 0x57, 0xdd, 0x96, 0xfa, 0x9c, 0x2c, 0x36,
- 0x58, 0xc3, 0x90, 0x0d, 0xfd, 0x0f, 0x25, 0xb8, 0x97, 0x18, 0xb3, 0x4b, 0x3c, 0x86, 0x3d, 0xf6,
- 0x5f, 0x30, 0x17, 0x7d, 0x00, 0x4d, 0x7b, 0x30, 0xf1, 0x86, 0x98, 0x97, 0x8b, 0xd2, 0xca, 0x00,
- 0x0f, 0xbb, 0x1d, 0xd0, 0xa3, 0x80, 0xbe, 0x86, 0xb5, 0x6c, 0x2b, 0x83, 0xc9, 0xb5, 0xa0, 0x32,
- 0xb2, 0x98, 0x3d, 0x88, 0xa6, 0x17, 0x36, 0x79, 0x09, 0x2f, 0x3e, 0xcd, 0xd8, 0x01, 0x59, 0x13,
- 0x94, 0x3d, 0x8b, 0x59, 0xe8, 0x21, 0x34, 0xb0, 0xd7, 0x33, 0x49, 0xdf, 0x14, 0xb4, 0x00, 0xa7,
- 0x03, 0xec, 0xf5, 0x4e, 0xfb, 0xc7, 0x9c, 0xa2, 0xff, 0xb9, 0x04, 0xb7, 0xcf, 0x28, 0x0e, 0xd0,
- 0x2e, 0xe9, 0x95, 0xcc, 0x52, 0xad, 0xf4, 0x6f, 0xa0, 0x0f, 0x9f, 0xc3, 0x52, 0x04, 0x2c, 0xbc,
- 0x4d, 0xad, 0x17, 0x62, 0x0e, 0x91, 0x80, 0x2d, 0xa8, 0x93, 0xee, 0xaf, 0xb0, 0xcd, 0xcc, 0x31,
- 0xbf, 0x05, 0x96, 0x93, 0x43, 0x4f, 0x05, 0xeb, 0x8c, 0x10, 0xd7, 0x00, 0x12, 0x7d, 0xeb, 0x08,
- 0x9a, 0x6a, 0x26, 0x81, 0x67, 0x7f, 0x28, 0xc1, 0xa2, 0x04, 0xf1, 0xc2, 0xca, 0xa3, 0x14, 0x55,
- 0x1e, 0x3c, 0x53, 0x88, 0xe3, 0x5a, 0x2e, 0xa4, 0xf8, 0x46, 0x3f, 0x86, 0x76, 0x94, 0xa0, 0x09,
- 0x75, 0xde, 0x88, 0x80, 0x32, 0x07, 0xd8, 0xea, 0x61, 0x1a, 0xa4, 0x8e, 0xd5, 0x30, 0x61, 0x47,
- 0xfc, 0x43, 0xc1, 0x46, 0xff, 0x07, 0xb7, 0x46, 0x0e, 0xbf, 0xa5, 0x9b, 0x14, 0xf7, 0x47, 0xd6,
- 0xd8, 0x6f, 0xcd, 0x8b, 0xab, 0xe3, 0x4d, 0x49, 0x35, 0x24, 0x51, 0xff, 0x6d, 0x09, 0xee, 0x0a,
- 0x2b, 0x0f, 0x2f, 0x2e, 0xce, 0x8a, 0x83, 0xb3, 0xef, 0x25, 0xc0, 0xd9, 0x34, 0xbe, 0x19, 0x82,
- 0xb5, 0x31, 0xf4, 0xb5, 0x9c, 0x40, 0x5f, 0xf5, 0x36, 0xac, 0xa6, 0xec, 0x91, 0xfe, 0xdb, 0xfc,
- 0x6b, 0x5b, 0x3c, 0x5a, 0x84, 0xf0, 0xb7, 0x7c, 0xd5, 0x41, 0x5f, 0x43, 0x73, 0xfa, 0xa9, 0x05,
- 0xad, 0xa7, 0xcd, 0x4c, 0xbc, 0xe9, 0x68, 0x0f, 0xf3, 0x3b, 0x04, 0x8b, 0xb5, 0xf8, 0xf7, 0xdf,
- 0x3f, 0x9d, 0xab, 0xce, 0xa1, 0x5f, 0x86, 0x0f, 0x25, 0xb1, 0x57, 0x14, 0x14, 0x1f, 0x9e, 0xf9,
- 0x60, 0xa3, 0x3d, 0x9a, 0xd1, 0x23, 0xa1, 0xa1, 0x84, 0x5e, 0x00, 0xa8, 0xc7, 0x11, 0xd4, 0x4e,
- 0x0e, 0x8c, 0x3d, 0xcf, 0x68, 0x5a, 0x16, 0x6b, 0x4a, 0xd8, 0x57, 0x70, 0x2b, 0xf9, 0xc2, 0x81,
- 0xee, 0x47, 0xa7, 0x44, 0xd6, 0x5b, 0x8b, 0xf6, 0x20, 0x8f, 0x9d, 0x16, 0x9c, 0x7c, 0x7a, 0x50,
- 0x82, 0x33, 0xdf, 0x37, 0x94, 0xe0, 0xec, 0x17, 0x8b, 0x48, 0xb0, 0x0d, 0x28, 0xfd, 0x70, 0x80,
- 0x22, 0xff, 0xe5, 0xbe, 0x60, 0x68, 0xfa, 0xac, 0x2e, 0x53, 0x4a, 0x4e, 0xa0, 0x1e, 0xc3, 0xd0,
- 0x51, 0xe4, 0xc9, 0xf4, 0x9b, 0x84, 0x76, 0x2f, 0x93, 0x37, 0x25, 0xef, 0x6b, 0x68, 0x4e, 0xdf,
- 0x8e, 0xd4, 0xa6, 0xcb, 0x81, 0xe5, 0xd5, 0xa6, 0xcb, 0x05, 0xda, 0x43, 0xf1, 0xc7, 0x00, 0x0a,
- 0x6e, 0x56, 0x5b, 0x22, 0x85, 0x77, 0xab, 0x2d, 0x91, 0x46, 0xa7, 0x43, 0x61, 0xcf, 0x85, 0xb5,
- 0xd3, 0x20, 0xb2, 0xb2, 0x36, 0x07, 0xad, 0x56, 0xd6, 0xe6, 0xe1, 0xcf, 0xf1, 0x10, 0x49, 0x61,
- 0xb3, 0x2a, 0x44, 0xf2, 0xb0, 0x68, 0x15, 0x22, 0xb9, 0xc0, 0x6e, 0xe4, 0x8f, 0x1f, 0xc1, 0xfc,
- 0xbe, 0x6f, 0x0f, 0xd1, 0x72, 0x34, 0x44, 0xc1, 0xba, 0xda, 0x4a, 0x92, 0x38, 0x35, 0xb4, 0x03,
- 0xd5, 0x10, 0xe5, 0x44, 0xab, 0x61, 0xcf, 0x29, 0xac, 0x56, 0x6b, 0xa5, 0x19, 0x53, 0x62, 0x2e,
- 0xe0, 0x66, 0x02, 0xa8, 0x44, 0x6b, 0x91, 0xd6, 0x0c, 0xa4, 0x54, 0xbb, 0x9f, 0xc3, 0x9d, 0xf2,
- 0xdc, 0x0b, 0x00, 0x05, 0x23, 0xaa, 0x75, 0x4e, 0x81, 0x9c, 0x6a, 0x9d, 0x33, 0x50, 0xc7, 0x58,
- 0x20, 0xa5, 0xf1, 0x40, 0x15, 0x48, 0xb9, 0xc8, 0xa4, 0x0a, 0xa4, 0x7c, 0x38, 0x31, 0xb2, 0x58,
- 0x28, 0x99, 0xc6, 0xf1, 0xe2, 0x4a, 0x72, 0x10, 0xc5, 0xb8, 0x92, 0x3c, 0x18, 0x30, 0x52, 0x42,
- 0xd3, 0x4f, 0x5b, 0x01, 0x0a, 0x87, 0xde, 0xcb, 0x8b, 0xa1, 0x24, 0x1c, 0xa8, 0xbd, 0xff, 0x2f,
- 0xfb, 0x4d, 0x79, 0xef, 0x1c, 0x1a, 0x71, 0x2c, 0x0e, 0xdd, 0x4b, 0x0a, 0x48, 0x00, 0x07, 0xda,
- 0x5a, 0x36, 0x33, 0x15, 0x78, 0xbf, 0x06, 0x2d, 0x1f, 0x18, 0x40, 0x1f, 0xcc, 0xb2, 0x31, 0xa9,
- 0xf0, 0xc3, 0xb7, 0xe9, 0x9a, 0x54, 0xff, 0x54, 0x64, 0xbd, 0x18, 0x98, 0xa7, 0xb2, 0x5e, 0x1a,
- 0x48, 0x54, 0x59, 0x2f, 0x03, 0xfd, 0x8b, 0x7c, 0x74, 0x08, 0xb5, 0x08, 0xe4, 0x42, 0xad, 0x3c,
- 0x88, 0x4e, 0x6b, 0x67, 0x70, 0xa6, 0x24, 0xfd, 0x0c, 0x1a, 0x71, 0xe8, 0x4a, 0x79, 0x3b, 0x03,
- 0x2f, 0x53, 0xde, 0xce, 0x44, 0xbb, 0xe2, 0x29, 0x5e, 0x81, 0x22, 0xb1, 0x14, 0x9f, 0xc2, 0x5c,
- 0x62, 0x29, 0x3e, 0x8d, 0xa2, 0x44, 0x9b, 0xb0, 0x2b, 0xde, 0x3c, 0x93, 0x78, 0x06, 0x8a, 0x3f,
- 0x3d, 0x66, 0x42, 0x27, 0x2a, 0xab, 0xe5, 0x82, 0x21, 0xa1, 0x86, 0xe7, 0x25, 0x9e, 0x39, 0x53,
- 0x30, 0x85, 0xd2, 0x91, 0x87, 0x88, 0x28, 0x1d, 0xb9, 0x18, 0x47, 0x34, 0x8b, 0x1d, 0xa8, 0x04,
- 0x7f, 0x24, 0xa0, 0xbb, 0xd1, 0xa8, 0xc4, 0x8f, 0x0e, 0xda, 0x6a, 0x8a, 0x3e, 0xe5, 0xd9, 0x33,
- 0xa8, 0xc7, 0x90, 0x0c, 0x14, 0x3f, 0x73, 0xa6, 0x10, 0x0a, 0xe5, 0xd9, 0x0c, 0xe8, 0x23, 0x36,
- 0xef, 0xdf, 0x94, 0x60, 0x6d, 0x16, 0xba, 0x80, 0x3e, 0x9a, 0xb5, 0xdf, 0xa7, 0x95, 0x7e, 0xfc,
- 0x76, 0x9d, 0xa7, 0x66, 0xf5, 0x73, 0xb8, 0x99, 0xa8, 0x9b, 0x55, 0x46, 0xcf, 0x82, 0x33, 0x54,
- 0x46, 0xcf, 0x2c, 0xb6, 0x63, 0x73, 0x1b, 0xc2, 0x4a, 0x56, 0xfd, 0x84, 0x1e, 0xab, 0xa8, 0xc8,
- 0xad, 0x01, 0xb5, 0x27, 0xb3, 0x3b, 0xa5, 0x94, 0x75, 0x61, 0x29, 0x55, 0x86, 0xaa, 0x0d, 0x94,
- 0x57, 0x19, 0xab, 0x0d, 0x94, 0x5b, 0xc3, 0xc6, 0x74, 0x60, 0x40, 0x69, 0xa4, 0x17, 0xc5, 0x2e,
- 0xb8, 0x39, 0x50, 0xb3, 0x4a, 0xf9, 0x33, 0x80, 0x62, 0x95, 0xac, 0xba, 0xb0, 0x94, 0x82, 0x78,
- 0xd5, 0x54, 0xf2, 0xd0, 0x64, 0x35, 0x95, 0x5c, 0x7c, 0x38, 0x36, 0x95, 0x0e, 0x54, 0xc3, 0xaa,
- 0x4c, 0x5d, 0x06, 0xa6, 0x2a, 0x4e, 0x75, 0x19, 0x48, 0x15, 0x70, 0xe1, 0xd6, 0x79, 0x05, 0xb7,
- 0xa7, 0x6a, 0x14, 0xf4, 0x20, 0x71, 0x99, 0x49, 0x15, 0x53, 0xda, 0x7a, 0x2e, 0x3f, 0x29, 0x7b,
- 0xe7, 0xf9, 0x2b, 0xde, 0xd3, 0xb5, 0xba, 0x1b, 0x36, 0x19, 0x3d, 0x93, 0x9f, 0x9f, 0x10, 0x7a,
- 0xf9, 0x4c, 0x8e, 0xff, 0x44, 0xfc, 0xae, 0xf6, 0xec, 0x92, 0x04, 0xed, 0x71, 0xb7, 0xbb, 0x28,
- 0x48, 0x5b, 0xff, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x15, 0xe2, 0x4c, 0x4e, 0xf3, 0x26, 0x00, 0x00,
+ proto.RegisterFile("repository-service.proto", fileDescriptor_repository_service_d00c9438dcbaa535)
+}
+
+var fileDescriptor_repository_service_d00c9438dcbaa535 = []byte{
+ // 2760 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4b, 0x73, 0xdb, 0xc8,
+ 0xf1, 0x37, 0xf5, 0x22, 0xd9, 0xa4, 0x6d, 0x6a, 0x24, 0x5b, 0x24, 0x2c, 0x5b, 0x36, 0xec, 0xff,
+ 0xae, 0xf7, 0x25, 0x7b, 0xa5, 0xc3, 0x7f, 0x93, 0x54, 0x6a, 0x4b, 0x94, 0xa8, 0xc7, 0xda, 0x7a,
+ 0x04, 0xd2, 0x66, 0x2b, 0xae, 0xda, 0x42, 0x40, 0x70, 0x28, 0x22, 0x04, 0x31, 0xdc, 0x01, 0x68,
+ 0xad, 0x5c, 0x95, 0x43, 0x0e, 0xa9, 0xda, 0x53, 0x2a, 0x7b, 0xca, 0x17, 0xc8, 0x27, 0xc8, 0x2d,
+ 0x87, 0xdc, 0x73, 0xcf, 0x29, 0xd7, 0x7c, 0x8c, 0x5c, 0x92, 0x9a, 0x07, 0x30, 0x00, 0x01, 0x30,
+ 0x4e, 0xc1, 0x49, 0x6e, 0x98, 0xee, 0x9e, 0xee, 0x9e, 0x9e, 0x99, 0x9e, 0xe9, 0xdf, 0x00, 0x9a,
+ 0x14, 0x8f, 0x89, 0xef, 0x04, 0x84, 0x5e, 0x7f, 0xe2, 0x63, 0xfa, 0xda, 0xb1, 0xf1, 0xe6, 0x98,
+ 0x92, 0x80, 0xa0, 0xa5, 0x4b, 0x27, 0xb0, 0xdc, 0x6b, 0xad, 0xee, 0x0f, 0x2c, 0x8a, 0x7b, 0x82,
+ 0xaa, 0x1f, 0xc3, 0x9a, 0x11, 0xf5, 0xe8, 0x7c, 0xeb, 0xf8, 0x81, 0x6f, 0xe0, 0x6f, 0x26, 0xd8,
+ 0x0f, 0xd0, 0x16, 0x80, 0x52, 0xd6, 0x2c, 0x3d, 0x2c, 0x3d, 0xad, 0x6d, 0xa1, 0x4d, 0xa1, 0x65,
+ 0x53, 0x75, 0x32, 0x62, 0x52, 0xfa, 0x16, 0x34, 0xd3, 0xea, 0xfc, 0x31, 0xf1, 0x7c, 0x8c, 0xee,
+ 0xc2, 0x12, 0xe6, 0x14, 0xae, 0xab, 0x62, 0xc8, 0x96, 0x7e, 0xc2, 0xfb, 0x58, 0xf6, 0xf0, 0xc8,
+ 0xb3, 0x29, 0x1e, 0x61, 0x2f, 0xb0, 0xdc, 0x22, 0x3e, 0xdc, 0x83, 0x56, 0x86, 0x3e, 0xe1, 0x84,
+ 0xee, 0xc2, 0xb2, 0x60, 0xee, 0x4f, 0xdc, 0x22, 0x56, 0xd0, 0x63, 0xb8, 0x69, 0x53, 0x6c, 0x05,
+ 0xd8, 0xec, 0x3a, 0xc1, 0xc8, 0x1a, 0x37, 0xe7, 0xf8, 0xa0, 0xea, 0x82, 0xd8, 0xe6, 0x34, 0x7d,
+ 0x15, 0x50, 0xdc, 0x9a, 0xf4, 0x61, 0x0c, 0x77, 0x0e, 0x2c, 0xda, 0xb5, 0x2e, 0xf1, 0x2e, 0x71,
+ 0x5d, 0x6c, 0x07, 0xff, 0x71, 0x3f, 0x9a, 0x70, 0x77, 0xda, 0xa2, 0xf4, 0x65, 0x0f, 0x6e, 0xed,
+ 0xba, 0xd8, 0xf2, 0x26, 0xe3, 0x22, 0x21, 0x5f, 0x86, 0xdb, 0x91, 0x16, 0xa9, 0xf8, 0x05, 0xdc,
+ 0x51, 0xc2, 0xe7, 0xce, 0x1b, 0x5c, 0x44, 0xff, 0xc7, 0x70, 0x77, 0x5a, 0x99, 0x5c, 0x54, 0x08,
+ 0x16, 0x7c, 0xe7, 0x0d, 0xe6, 0x7a, 0xe6, 0x0d, 0xfe, 0xad, 0x0f, 0xa1, 0xb5, 0x33, 0x1e, 0xbb,
+ 0xd7, 0x07, 0x4e, 0x60, 0x05, 0x01, 0x75, 0xba, 0x93, 0x00, 0x17, 0x59, 0xd5, 0x48, 0x83, 0x0a,
+ 0xc5, 0xaf, 0x1d, 0xdf, 0x21, 0x1e, 0x0f, 0x6f, 0xdd, 0x88, 0xda, 0xfa, 0x3a, 0x68, 0x59, 0xc6,
+ 0x64, 0x14, 0xfe, 0x38, 0x07, 0x68, 0x1f, 0x07, 0xf6, 0xc0, 0xc0, 0x23, 0x12, 0x14, 0x89, 0x01,
+ 0xdb, 0x3e, 0x94, 0x2b, 0xe1, 0x2e, 0x54, 0x0d, 0xd9, 0x42, 0xab, 0xb0, 0xd8, 0x27, 0xd4, 0xc6,
+ 0xcd, 0x79, 0x3e, 0xf1, 0xa2, 0x81, 0xd6, 0xa0, 0xec, 0x11, 0x33, 0xb0, 0x2e, 0xfd, 0xe6, 0x82,
+ 0xd8, 0x6d, 0x1e, 0xb9, 0xb0, 0x2e, 0x7d, 0xd4, 0x84, 0x72, 0xe0, 0x8c, 0x30, 0x99, 0x04, 0xcd,
+ 0xc5, 0x87, 0xa5, 0xa7, 0x8b, 0x46, 0xd8, 0x64, 0x5d, 0x7c, 0x7f, 0x60, 0x0e, 0xf1, 0x75, 0x73,
+ 0x49, 0x58, 0xf0, 0xfd, 0xc1, 0x0b, 0x7c, 0x8d, 0x36, 0xa0, 0x36, 0xf4, 0xc8, 0x95, 0x67, 0x0e,
+ 0x08, 0xdb, 0xbd, 0x65, 0xce, 0x04, 0x4e, 0x3a, 0x64, 0x14, 0xd4, 0x82, 0x8a, 0x47, 0xcc, 0x31,
+ 0x9d, 0x78, 0xb8, 0x59, 0xe5, 0xd6, 0xca, 0x1e, 0x39, 0x63, 0x4d, 0xb4, 0x0d, 0x37, 0x85, 0x9f,
+ 0xe6, 0xd8, 0xa2, 0xd6, 0xc8, 0x6f, 0x02, 0x1f, 0xec, 0x2d, 0x35, 0x58, 0x1e, 0x97, 0xba, 0x10,
+ 0x3a, 0xe3, 0x32, 0x5f, 0x2c, 0x54, 0x2a, 0x8d, 0xaa, 0x7e, 0x07, 0x56, 0x12, 0xa1, 0x93, 0x21,
+ 0x3d, 0x86, 0xb5, 0x5d, 0xbe, 0xb6, 0x63, 0x71, 0x2a, 0xb0, 0xb4, 0x34, 0x68, 0xa6, 0xd5, 0x49,
+ 0x53, 0xff, 0x28, 0xc1, 0xf2, 0x01, 0x0e, 0x76, 0xa8, 0x3d, 0x70, 0x5e, 0x17, 0x9a, 0xbc, 0x7b,
+ 0x50, 0xb5, 0xc9, 0x68, 0xe4, 0x04, 0xa6, 0xd3, 0x93, 0xf3, 0x57, 0x11, 0x84, 0xa3, 0x1e, 0x9b,
+ 0xd9, 0x31, 0xc5, 0x7d, 0xe7, 0x5b, 0x3e, 0x85, 0x55, 0x43, 0xb6, 0xd0, 0x67, 0xb0, 0xd4, 0x27,
+ 0x74, 0x64, 0x05, 0x7c, 0x0a, 0x6f, 0x6d, 0x3d, 0x0c, 0x8d, 0xa4, 0x7c, 0xda, 0xdc, 0xe7, 0x72,
+ 0x86, 0x94, 0x67, 0xbb, 0x62, 0x6c, 0x05, 0x03, 0x3e, 0xc3, 0x75, 0x83, 0x7f, 0xeb, 0xdb, 0xb0,
+ 0x24, 0xa4, 0x50, 0x19, 0xe6, 0x5f, 0x1d, 0x9d, 0x35, 0x6e, 0xb0, 0x8f, 0x8b, 0x1d, 0xa3, 0x51,
+ 0x42, 0x00, 0x4b, 0x17, 0x3b, 0x86, 0x79, 0xf0, 0xaa, 0x31, 0x87, 0x6a, 0x50, 0x66, 0xdf, 0xed,
+ 0x57, 0x5b, 0x8d, 0x79, 0xfd, 0x29, 0xa0, 0xb8, 0x31, 0xb5, 0xe9, 0x7a, 0x56, 0x60, 0xf1, 0xb1,
+ 0xd7, 0x0d, 0xfe, 0xcd, 0xa6, 0xe5, 0xd0, 0xf2, 0x5f, 0x12, 0xdb, 0x72, 0xdb, 0xd4, 0xf2, 0xec,
+ 0x41, 0xa1, 0x2d, 0xa7, 0x3f, 0x87, 0x66, 0x5a, 0x9d, 0x34, 0xbf, 0x0a, 0x8b, 0xaf, 0x2d, 0x77,
+ 0x82, 0xe5, 0x39, 0x22, 0x1a, 0xfa, 0x5f, 0x4a, 0xd0, 0xe4, 0xeb, 0xe5, 0x9c, 0x4c, 0xa8, 0x8d,
+ 0x45, 0xaf, 0x22, 0x73, 0xf6, 0x39, 0x2c, 0xfb, 0x5c, 0x95, 0x19, 0xeb, 0x3a, 0x97, 0xdb, 0xb5,
+ 0x21, 0x84, 0x8d, 0x44, 0x6a, 0x96, 0x0a, 0xba, 0xdc, 0x19, 0x3e, 0xbd, 0x75, 0xa3, 0xee, 0xc7,
+ 0x1c, 0x44, 0xf7, 0x01, 0x02, 0x8b, 0x5e, 0xe2, 0xc0, 0xa4, 0xb8, 0xcf, 0x27, 0xba, 0x6e, 0x54,
+ 0x05, 0xc5, 0xc0, 0x7d, 0x7d, 0x1b, 0x5a, 0x19, 0x83, 0x52, 0x27, 0x2a, 0xc5, 0xfe, 0xc4, 0x0d,
+ 0xc2, 0x13, 0x55, 0xb4, 0xf4, 0x1d, 0xa8, 0xed, 0xfb, 0xf6, 0xb0, 0x48, 0xfc, 0x9f, 0x40, 0x5d,
+ 0xa8, 0x50, 0x31, 0xc7, 0x94, 0x12, 0x2a, 0xe7, 0x5c, 0x34, 0xf4, 0x3f, 0x94, 0xe0, 0xf6, 0x57,
+ 0xd4, 0x61, 0x9b, 0xa7, 0x5f, 0x24, 0xd4, 0x0d, 0x98, 0x67, 0xa3, 0x17, 0xb9, 0x95, 0x7d, 0x26,
+ 0x52, 0xee, 0x7c, 0x32, 0xe5, 0xa2, 0x47, 0x50, 0x27, 0x6e, 0xcf, 0x8c, 0xf8, 0x22, 0x68, 0x35,
+ 0xe2, 0xf6, 0x8c, 0x50, 0x24, 0x4a, 0x8a, 0x8b, 0xb1, 0xa4, 0xf8, 0xc5, 0x42, 0x65, 0xa9, 0x51,
+ 0xd6, 0x9b, 0xd0, 0x50, 0x3e, 0x8b, 0xe1, 0x7d, 0xb1, 0x50, 0x29, 0x35, 0xe6, 0xf4, 0x01, 0xac,
+ 0xee, 0x3b, 0x5e, 0xef, 0x18, 0xd3, 0x4b, 0xdc, 0xb6, 0xfc, 0x42, 0x3b, 0x7e, 0x1d, 0xaa, 0xa1,
+ 0x83, 0x7e, 0x73, 0xee, 0xe1, 0x3c, 0x9b, 0xd6, 0x88, 0xa0, 0x7f, 0x04, 0x77, 0xa6, 0x2c, 0xa9,
+ 0xad, 0xd5, 0xb5, 0x7c, 0xb1, 0xb4, 0xab, 0x06, 0xff, 0xd6, 0xbf, 0x2b, 0xc1, 0xb2, 0xc8, 0x51,
+ 0xfb, 0x84, 0x0e, 0xff, 0x97, 0x4b, 0x9a, 0x5d, 0x68, 0xe2, 0x9e, 0x44, 0x97, 0xaa, 0xd6, 0x91,
+ 0x6f, 0x60, 0xe6, 0xec, 0x91, 0x77, 0x46, 0xc9, 0x25, 0xc5, 0xbe, 0x5f, 0x30, 0x5d, 0x52, 0xae,
+ 0x2e, 0x96, 0x2e, 0x05, 0xe1, 0xa8, 0xa7, 0xff, 0x18, 0xb4, 0x2c, 0x6b, 0x32, 0x80, 0x1b, 0x50,
+ 0x73, 0x3c, 0x73, 0x2c, 0xc9, 0x72, 0x63, 0x80, 0x13, 0x09, 0x0a, 0x67, 0xcf, 0xbf, 0x99, 0x58,
+ 0xfe, 0xe0, 0x9d, 0x39, 0xeb, 0x73, 0x75, 0x31, 0x67, 0x05, 0x21, 0x74, 0x36, 0x6d, 0xed, 0x6d,
+ 0x9d, 0xed, 0xc3, 0x83, 0xe9, 0xd3, 0x69, 0x9f, 0x92, 0xd1, 0x97, 0xc6, 0xcb, 0x82, 0xdb, 0x6d,
+ 0x42, 0x5d, 0xe9, 0x2b, 0xfb, 0xd4, 0x1f, 0xc1, 0x46, 0xae, 0x1d, 0x39, 0xc9, 0x47, 0xb0, 0x22,
+ 0x44, 0xda, 0x13, 0xaf, 0xe7, 0x16, 0xba, 0xce, 0x7d, 0x08, 0xab, 0x49, 0x55, 0x33, 0xce, 0x15,
+ 0x0c, 0x88, 0xef, 0xd6, 0x5d, 0xe2, 0xf5, 0x9d, 0xcb, 0x82, 0xf3, 0xd4, 0x9f, 0xb8, 0xae, 0xc9,
+ 0x4f, 0x46, 0x39, 0x4f, 0x8c, 0x70, 0xc6, 0x4e, 0xc7, 0x8f, 0x60, 0x25, 0x61, 0x66, 0x66, 0xda,
+ 0xfb, 0x6e, 0x0e, 0x1a, 0xe7, 0x38, 0x28, 0xee, 0xd2, 0x67, 0x50, 0xc6, 0x5e, 0x40, 0x1d, 0x2c,
+ 0x52, 0x44, 0x6d, 0xeb, 0x41, 0xd8, 0x61, 0x5a, 0xfd, 0x66, 0xc7, 0x0b, 0xe8, 0xb5, 0x11, 0x8a,
+ 0x6b, 0xbf, 0x2e, 0xc1, 0x22, 0x27, 0xb1, 0xc9, 0x64, 0x57, 0x36, 0x91, 0x30, 0xd8, 0x27, 0xba,
+ 0x0f, 0x55, 0x7e, 0x24, 0x9a, 0x7e, 0x40, 0xc5, 0x40, 0x0f, 0x6f, 0x18, 0x15, 0x4e, 0x3a, 0x0f,
+ 0x28, 0x7a, 0x04, 0x35, 0xc1, 0x76, 0xbc, 0x60, 0x7b, 0x8b, 0x67, 0xd7, 0xc5, 0xc3, 0x1b, 0x06,
+ 0x70, 0xe2, 0x11, 0xa3, 0xa1, 0x0d, 0x10, 0x2d, 0xb3, 0x4b, 0x88, 0x2b, 0x2e, 0x90, 0x87, 0x37,
+ 0x0c, 0xa1, 0xb5, 0x4d, 0x88, 0xdb, 0x2e, 0xcb, 0x23, 0x58, 0x5f, 0x81, 0xe5, 0x98, 0xab, 0x72,
+ 0xa9, 0x7c, 0x0d, 0x2b, 0x7b, 0xd8, 0xc5, 0xef, 0x62, 0xd2, 0x10, 0x2c, 0x0c, 0xf1, 0xb5, 0x08,
+ 0x4f, 0xd5, 0xe0, 0xdf, 0xfa, 0x5d, 0x58, 0x4d, 0xaa, 0x97, 0x66, 0x6d, 0x56, 0xf8, 0xf9, 0x01,
+ 0xa1, 0x78, 0x77, 0xe2, 0x07, 0x64, 0x74, 0x48, 0xc8, 0xd0, 0x2f, 0x68, 0x9c, 0xaf, 0xc7, 0xb9,
+ 0xd8, 0x7a, 0x5c, 0x07, 0x2d, 0xcb, 0x88, 0x74, 0xe1, 0x04, 0x9a, 0x6d, 0xcb, 0x1e, 0x4e, 0xc6,
+ 0xef, 0xc6, 0x03, 0xfd, 0x19, 0xb4, 0x32, 0xf4, 0xcd, 0xd8, 0x2e, 0x43, 0x78, 0x94, 0xb5, 0x91,
+ 0x0b, 0xef, 0xd9, 0xcc, 0x58, 0x3c, 0x01, 0x7d, 0x96, 0x31, 0x19, 0x93, 0x43, 0x40, 0xec, 0xac,
+ 0x7b, 0xe9, 0xd8, 0xd8, 0x2b, 0x74, 0xa6, 0xea, 0xbb, 0xb0, 0x92, 0xd0, 0x24, 0xe3, 0xf0, 0x31,
+ 0x20, 0x57, 0x90, 0x4c, 0x7f, 0x40, 0x68, 0x60, 0x7a, 0xd6, 0x28, 0x3c, 0x41, 0x1b, 0x92, 0x73,
+ 0xce, 0x18, 0x27, 0xd6, 0x88, 0x4f, 0xd1, 0x01, 0x0e, 0x8e, 0xbc, 0x3e, 0xd9, 0x79, 0x17, 0xc5,
+ 0xa1, 0xfe, 0x23, 0x68, 0x65, 0xe8, 0x93, 0xae, 0x3d, 0x00, 0x50, 0x55, 0xa1, 0x9c, 0xa8, 0x18,
+ 0x85, 0x39, 0xb3, 0x6b, 0xb9, 0xf6, 0xc4, 0xb5, 0x02, 0xbc, 0x3b, 0xc0, 0xf6, 0xd0, 0x9f, 0x8c,
+ 0x8a, 0x38, 0xf3, 0xff, 0xd0, 0xca, 0xd0, 0x27, 0x9d, 0xd1, 0xa0, 0x62, 0x4b, 0x9a, 0x8c, 0x4e,
+ 0xd4, 0x66, 0x93, 0x74, 0x80, 0x83, 0x73, 0xcf, 0x1a, 0xfb, 0x03, 0x52, 0x04, 0x90, 0xd0, 0x3f,
+ 0x80, 0x95, 0x84, 0xa6, 0x19, 0x8b, 0xf5, 0xfb, 0x12, 0x3c, 0xce, 0x5a, 0x40, 0xef, 0xc0, 0x0d,
+ 0x56, 0x93, 0x0e, 0x82, 0x60, 0x6c, 0xaa, 0x83, 0xae, 0xcc, 0xda, 0x5f, 0x52, 0x97, 0x1d, 0x04,
+ 0x9c, 0x65, 0x4d, 0x82, 0x81, 0x2c, 0xb9, 0xb8, 0xec, 0xce, 0x24, 0x18, 0xe8, 0xef, 0xc1, 0x93,
+ 0xd9, 0x2e, 0xc9, 0x55, 0xfd, 0xdb, 0x12, 0xac, 0x1e, 0xe0, 0xc0, 0xb0, 0xae, 0x76, 0x07, 0x96,
+ 0x77, 0x59, 0x0c, 0x60, 0x78, 0x0c, 0x37, 0xfb, 0x94, 0x8c, 0xcc, 0x04, 0xca, 0x50, 0x35, 0xea,
+ 0x8c, 0x18, 0xdd, 0x69, 0x37, 0xa0, 0x16, 0x10, 0x33, 0x71, 0x2b, 0xae, 0x1a, 0x10, 0x90, 0x50,
+ 0x40, 0xff, 0xd3, 0x02, 0xdc, 0x99, 0x72, 0x49, 0x06, 0xff, 0x10, 0x6a, 0xd4, 0xba, 0x32, 0x6d,
+ 0x41, 0x6e, 0x96, 0xf8, 0x59, 0xf3, 0x7e, 0xac, 0x9c, 0x4c, 0xf7, 0xd9, 0x8c, 0x48, 0x06, 0xd0,
+ 0x88, 0xab, 0xfd, 0x75, 0x1e, 0xaa, 0x11, 0x07, 0xad, 0x41, 0xb9, 0xeb, 0x92, 0x2e, 0xbb, 0xf8,
+ 0x88, 0x05, 0xb5, 0xc4, 0x9a, 0x47, 0xbd, 0x08, 0x96, 0x99, 0x53, 0xb0, 0x0c, 0xba, 0x0f, 0x15,
+ 0x0f, 0x5f, 0x89, 0xe3, 0x97, 0x3b, 0xdf, 0x9e, 0x6b, 0x96, 0x8c, 0xb2, 0x87, 0xaf, 0xd8, 0x09,
+ 0xcc, 0xd8, 0xec, 0x56, 0xcf, 0xd9, 0x0b, 0x8a, 0x4d, 0xdc, 0x1e, 0x67, 0x9f, 0x42, 0x95, 0x8c,
+ 0x31, 0xb5, 0x02, 0x36, 0xf6, 0x45, 0x5e, 0x0f, 0x7f, 0xfa, 0x96, 0x03, 0xd8, 0x3c, 0x0d, 0x3b,
+ 0x1a, 0x4a, 0x07, 0x8b, 0x39, 0x8b, 0x89, 0x52, 0x2a, 0x40, 0x8f, 0x3a, 0xb5, 0xae, 0x22, 0x79,
+ 0xb6, 0x8a, 0x98, 0x53, 0x23, 0xd2, 0xc3, 0x1c, 0xf7, 0x58, 0xe4, 0x0e, 0x1d, 0x93, 0x1e, 0xe6,
+ 0xa0, 0x07, 0xbe, 0x12, 0xac, 0x8a, 0x60, 0x79, 0xf8, 0x8a, 0xb3, 0x9e, 0xc0, 0xad, 0x70, 0xa4,
+ 0x66, 0xf7, 0x9a, 0xed, 0xfc, 0xaa, 0xa8, 0xfc, 0xe4, 0x58, 0xdb, 0x8c, 0xc6, 0xa4, 0xc2, 0x01,
+ 0x4b, 0x29, 0x10, 0x52, 0x72, 0xc8, 0x5c, 0x4a, 0x77, 0xa0, 0xaa, 0xdc, 0xa9, 0x41, 0xf9, 0xcb,
+ 0x93, 0x17, 0x27, 0xa7, 0x5f, 0x9d, 0x34, 0x6e, 0xa0, 0x2a, 0x2c, 0xee, 0xec, 0xed, 0x75, 0xf6,
+ 0x44, 0xfd, 0xbe, 0x7b, 0x7a, 0x76, 0xd4, 0xd9, 0x13, 0xf5, 0xfb, 0x5e, 0xe7, 0x65, 0xe7, 0xa2,
+ 0xb3, 0xd7, 0x98, 0x47, 0x75, 0xa8, 0x1c, 0x9f, 0xee, 0x1d, 0xed, 0x33, 0xd6, 0x02, 0x63, 0x19,
+ 0x9d, 0x93, 0x9d, 0xe3, 0xce, 0x5e, 0x63, 0x11, 0x35, 0xa0, 0x7e, 0xf1, 0xb3, 0xb3, 0x8e, 0xb9,
+ 0x7b, 0xb8, 0x73, 0x72, 0xd0, 0xd9, 0x6b, 0x2c, 0xe9, 0xaf, 0xa1, 0x79, 0x8e, 0x2d, 0x6a, 0x0f,
+ 0xf6, 0x1d, 0x17, 0xfb, 0xed, 0x6b, 0x96, 0x2e, 0x8b, 0xac, 0xea, 0x55, 0x58, 0xfc, 0x66, 0x82,
+ 0x65, 0x85, 0x51, 0x35, 0x44, 0x23, 0xac, 0xf5, 0xe6, 0xa3, 0x5a, 0x4f, 0xff, 0x14, 0x5a, 0x19,
+ 0x76, 0xd5, 0x0d, 0xac, 0xcf, 0xc8, 0x7c, 0xd1, 0xd6, 0x0d, 0xd1, 0xd0, 0x7f, 0x5f, 0x82, 0x7b,
+ 0x89, 0x3e, 0xbb, 0xc4, 0x0b, 0xb0, 0x17, 0xfc, 0x17, 0xdc, 0x45, 0x1f, 0x40, 0xc3, 0x1e, 0x4c,
+ 0xbc, 0x21, 0x66, 0x25, 0xa8, 0xf0, 0x52, 0x62, 0x6c, 0xb7, 0x25, 0x3d, 0x4a, 0x12, 0xd7, 0xb0,
+ 0x9e, 0xed, 0xa5, 0x1c, 0x5c, 0x13, 0xca, 0x23, 0x2b, 0xb0, 0x07, 0xd1, 0xf0, 0xc2, 0x26, 0xba,
+ 0x0f, 0xc0, 0x3f, 0xcd, 0xd8, 0xa1, 0x5b, 0xe5, 0x94, 0x3d, 0x2b, 0xb0, 0xd0, 0x43, 0xa8, 0x63,
+ 0xaf, 0x67, 0x92, 0xbe, 0xc9, 0x69, 0x12, 0xfb, 0x03, 0xec, 0xf5, 0x4e, 0xfb, 0xc7, 0x8c, 0xa2,
+ 0xff, 0xb9, 0x04, 0xb7, 0xcf, 0x28, 0x96, 0x08, 0x9a, 0x88, 0x4a, 0x66, 0xf9, 0x57, 0xfa, 0x37,
+ 0x10, 0x8d, 0xcf, 0x61, 0x39, 0x02, 0x2b, 0xde, 0xa6, 0x7e, 0x0c, 0x71, 0x8c, 0x48, 0xc1, 0x36,
+ 0xd4, 0x48, 0xf7, 0x17, 0xd8, 0x0e, 0xcc, 0x31, 0xbb, 0x59, 0xce, 0x27, 0xbb, 0x9e, 0x72, 0xd6,
+ 0x19, 0x21, 0xae, 0x01, 0x24, 0xfa, 0xd6, 0x11, 0x34, 0xd4, 0x48, 0x64, 0x64, 0xbf, 0x2f, 0xc1,
+ 0x92, 0x00, 0x06, 0xc3, 0x6a, 0xa6, 0x14, 0x55, 0x33, 0x2c, 0xfb, 0xf0, 0x2b, 0x80, 0x98, 0x48,
+ 0xfe, 0x8d, 0x7e, 0x08, 0xad, 0x28, 0xe9, 0x13, 0xea, 0xbc, 0xe1, 0x1b, 0xca, 0x1c, 0x60, 0xab,
+ 0x87, 0xa9, 0xcc, 0xa5, 0x6b, 0xe1, 0x21, 0x10, 0xf1, 0x0f, 0x39, 0x1b, 0xfd, 0x1f, 0xdc, 0x1a,
+ 0x39, 0xec, 0xe6, 0x6f, 0x52, 0xdc, 0x1f, 0x59, 0x63, 0xbf, 0xb9, 0xc0, 0xaf, 0xa3, 0x37, 0x05,
+ 0xd5, 0x10, 0x44, 0xfd, 0x37, 0x25, 0xb8, 0xcb, 0xbd, 0x3c, 0xbc, 0xb8, 0x38, 0x2b, 0x0e, 0xf8,
+ 0xbe, 0x97, 0x00, 0x7c, 0xd3, 0x98, 0x69, 0x08, 0x00, 0xc7, 0x10, 0xdd, 0xf9, 0x04, 0xa2, 0xab,
+ 0xb7, 0x60, 0x2d, 0xe5, 0x8f, 0x88, 0xdf, 0xd6, 0xdf, 0x5a, 0xfc, 0x21, 0x24, 0x84, 0xd4, 0xc5,
+ 0x4b, 0x11, 0xfa, 0x1a, 0x1a, 0xd3, 0xcf, 0x37, 0x68, 0x23, 0xed, 0x66, 0xe2, 0x9d, 0x48, 0x7b,
+ 0x98, 0x2f, 0x20, 0x27, 0x6b, 0xe9, 0xef, 0xbf, 0x7b, 0x3a, 0x57, 0x99, 0x43, 0x3f, 0x0f, 0x1f,
+ 0x5f, 0x62, 0x2f, 0x33, 0x28, 0xde, 0x3d, 0xf3, 0x11, 0x48, 0x7b, 0x34, 0x43, 0x22, 0x61, 0xa1,
+ 0x84, 0x5e, 0x00, 0xa8, 0x07, 0x17, 0xd4, 0x4a, 0x76, 0x8c, 0x3d, 0xf9, 0x68, 0x5a, 0x16, 0x6b,
+ 0x4a, 0xd9, 0x57, 0x70, 0x2b, 0xf9, 0x6a, 0x82, 0xee, 0x47, 0x27, 0x4e, 0xd6, 0xfb, 0x8d, 0xf6,
+ 0x20, 0x8f, 0x9d, 0x56, 0x9c, 0x7c, 0xce, 0x50, 0x8a, 0x33, 0xdf, 0x4c, 0x94, 0xe2, 0xec, 0x57,
+ 0x90, 0x48, 0xb1, 0x0d, 0x28, 0xfd, 0x18, 0x81, 0xa2, 0xf8, 0xe5, 0xbe, 0x8a, 0x68, 0xfa, 0x2c,
+ 0x91, 0x29, 0x23, 0x27, 0x50, 0x8b, 0xe1, 0xf2, 0x28, 0x8a, 0x64, 0xfa, 0x9d, 0x43, 0xbb, 0x97,
+ 0xc9, 0x9b, 0xd2, 0xf7, 0x35, 0x34, 0xa6, 0x6f, 0x5c, 0x6a, 0xd1, 0xe5, 0x40, 0xfd, 0x6a, 0xd1,
+ 0xe5, 0x82, 0xf7, 0xa1, 0xfa, 0x63, 0x00, 0x05, 0x61, 0xab, 0x25, 0x91, 0xc2, 0xd0, 0xd5, 0x92,
+ 0x48, 0x23, 0xde, 0xa1, 0xb2, 0xe7, 0xdc, 0xdb, 0x69, 0x60, 0x5a, 0x79, 0x9b, 0x83, 0x80, 0x2b,
+ 0x6f, 0xf3, 0x30, 0xed, 0xf8, 0x16, 0x49, 0xe1, 0xbd, 0x6a, 0x8b, 0xe4, 0xe1, 0xdb, 0x6a, 0x8b,
+ 0xe4, 0x82, 0xc5, 0x51, 0x3c, 0x7e, 0x00, 0x0b, 0xfb, 0xbe, 0x3d, 0x44, 0x2b, 0x51, 0x17, 0x05,
+ 0x15, 0x6b, 0xab, 0x49, 0xe2, 0x54, 0xd7, 0x0e, 0x54, 0x42, 0xe4, 0x14, 0xad, 0x85, 0x92, 0x53,
+ 0xf8, 0xaf, 0xd6, 0x4c, 0x33, 0xa6, 0xd4, 0x5c, 0xc0, 0xcd, 0x04, 0xf8, 0x89, 0xd6, 0x23, 0xab,
+ 0x19, 0xe8, 0xab, 0x76, 0x3f, 0x87, 0x3b, 0x15, 0xb9, 0x17, 0x00, 0x0a, 0x9a, 0x54, 0xf3, 0x9c,
+ 0x02, 0x4e, 0xd5, 0x3c, 0x67, 0x20, 0x99, 0xb1, 0x8d, 0x94, 0xc6, 0x18, 0xd5, 0x46, 0xca, 0x45,
+ 0x3b, 0xd5, 0x46, 0xca, 0x87, 0x28, 0x23, 0x8f, 0xb9, 0x91, 0x69, 0x6c, 0x30, 0x6e, 0x24, 0x07,
+ 0xa5, 0x8c, 0x1b, 0xc9, 0x83, 0x16, 0x23, 0x23, 0x34, 0xfd, 0x5c, 0x26, 0x91, 0x3d, 0xf4, 0x5e,
+ 0xde, 0x1e, 0x4a, 0x42, 0x8c, 0xda, 0xfb, 0xff, 0x52, 0x6e, 0x2a, 0x7a, 0xe7, 0x50, 0x8f, 0xe3,
+ 0x7b, 0xe8, 0x5e, 0x52, 0x41, 0x02, 0x8c, 0xd0, 0xd6, 0xb3, 0x99, 0xa9, 0x8d, 0xf7, 0x4b, 0xd0,
+ 0xf2, 0xc1, 0x06, 0xf4, 0xc1, 0x2c, 0x1f, 0x93, 0x06, 0x3f, 0x7c, 0x1b, 0xd1, 0xa4, 0xf9, 0xa7,
+ 0x3c, 0xeb, 0xc5, 0x00, 0x42, 0x95, 0xf5, 0xd2, 0xe0, 0xa4, 0xca, 0x7a, 0x19, 0x88, 0x62, 0x14,
+ 0xa3, 0x43, 0xa8, 0x46, 0xc0, 0x19, 0x6a, 0xe6, 0xc1, 0x7e, 0x5a, 0x2b, 0x83, 0x33, 0xa5, 0xe9,
+ 0x27, 0x50, 0x8f, 0xc3, 0x61, 0x2a, 0xda, 0x19, 0x18, 0x9c, 0x8a, 0x76, 0x26, 0x82, 0x16, 0x4f,
+ 0xf1, 0x0a, 0x68, 0x89, 0xa5, 0xf8, 0x14, 0x8e, 0x13, 0x4b, 0xf1, 0x69, 0x64, 0x26, 0x5a, 0x84,
+ 0x5d, 0xfe, 0x8e, 0x9a, 0xc4, 0x48, 0x50, 0xfc, 0x39, 0x33, 0x13, 0x8e, 0x51, 0x59, 0x2d, 0x17,
+ 0x60, 0x09, 0x2d, 0x3c, 0x2f, 0xb1, 0xcc, 0x99, 0x82, 0x3e, 0x94, 0x8d, 0x3c, 0x94, 0x45, 0xd9,
+ 0xc8, 0xc5, 0x4d, 0xa2, 0x51, 0xb4, 0xa1, 0x2c, 0xff, 0x72, 0x40, 0x77, 0xa3, 0x5e, 0x89, 0x9f,
+ 0x27, 0xb4, 0xb5, 0x14, 0x7d, 0x2a, 0xb2, 0x67, 0x50, 0x8b, 0xa1, 0x23, 0x28, 0x7e, 0xe6, 0x4c,
+ 0xa1, 0x1e, 0x2a, 0xb2, 0x19, 0x70, 0x4a, 0x6c, 0xdc, 0xbf, 0x2a, 0xc1, 0xfa, 0x2c, 0xc4, 0x02,
+ 0x7d, 0x34, 0x6b, 0xbd, 0x4f, 0x1b, 0xfd, 0xf8, 0xed, 0x84, 0xa7, 0x46, 0xf5, 0x53, 0xb8, 0x99,
+ 0xa8, 0xc1, 0x55, 0x46, 0xcf, 0x82, 0x48, 0x54, 0x46, 0xcf, 0x2c, 0xdc, 0x63, 0x63, 0x1b, 0xc2,
+ 0x6a, 0x56, 0xfd, 0x84, 0x1e, 0xab, 0x5d, 0x91, 0x5b, 0x03, 0x6a, 0x4f, 0x66, 0x0b, 0xa5, 0x8c,
+ 0x75, 0x61, 0x39, 0x55, 0x86, 0xaa, 0x05, 0x94, 0x57, 0x19, 0xab, 0x05, 0x94, 0x5b, 0xc3, 0xc6,
+ 0x6c, 0x60, 0x40, 0x69, 0xf4, 0x18, 0xc5, 0x2e, 0xb8, 0x39, 0xf0, 0xb5, 0x4a, 0xf9, 0x33, 0xc0,
+ 0x67, 0x95, 0xac, 0xba, 0xb0, 0x9c, 0x82, 0x8d, 0xd5, 0x50, 0xf2, 0x10, 0x6a, 0x35, 0x94, 0x5c,
+ 0xcc, 0x39, 0x36, 0x94, 0x0e, 0x54, 0xc2, 0xaa, 0x4c, 0x5d, 0x06, 0xa6, 0x2a, 0x4e, 0x75, 0x19,
+ 0x48, 0x15, 0x70, 0xe1, 0xd2, 0x79, 0x05, 0xb7, 0xa7, 0x6a, 0x14, 0xf4, 0x20, 0x71, 0x99, 0x49,
+ 0x15, 0x53, 0xda, 0x46, 0x2e, 0x3f, 0xa9, 0xbb, 0xfd, 0xfc, 0x15, 0x93, 0x74, 0xad, 0xee, 0xa6,
+ 0x4d, 0x46, 0xcf, 0xc4, 0xe7, 0x27, 0x84, 0x5e, 0x3e, 0x13, 0xfd, 0x3f, 0xe1, 0xbf, 0xc0, 0x3d,
+ 0xbb, 0x24, 0xb2, 0x3d, 0xee, 0x76, 0x97, 0x38, 0x69, 0xfb, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff,
+ 0xfe, 0xd6, 0x2f, 0x0b, 0x47, 0x27, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 66808f5d1..ec86ee7e8 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -593,12 +593,12 @@
"revisionTime": "2016-03-31T18:18:00Z"
},
{
- "checksumSHA1": "iJKQ/S8ynk2UP3iBJFixbHEJu10=",
+ "checksumSHA1": "GIKWOybd1FBje1xV81B+havPyOQ=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb",
- "revision": "9647fbe9afb8acef26f9dbdc8f55fafc4a67175c",
- "revisionTime": "2019-04-15T18:02:16Z",
- "version": "v1.24.0",
- "versionExact": "v1.24.0"
+ "revision": "f90f9782cbceab4f8611b2f7ba680c78ae555c85",
+ "revisionTime": "2019-04-16T22:54:53Z",
+ "version": "v1.26.0",
+ "versionExact": "v1.26.0"
},
{
"checksumSHA1": "WMOuBgCyclqy+Mqunb0NbykaC4Y=",