Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3-chunker
Commits
f5c45f3a
Commit
f5c45f3a
authored
May 05, 2016
by
Kevin Atkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make blocks.Block an interface.
License: MIT Signed-off-by:
Kevin Atkinson
<
k@kevina.org
>
parent
64cb0cf2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
rabin_test.go
rabin_test.go
+2
-2
No files found.
rabin_test.go
View file @
f5c45f3a
...
...
@@ -39,10 +39,10 @@ func TestRabinChunking(t *testing.T) {
}
}
func
chunkData
(
t
*
testing
.
T
,
data
[]
byte
)
map
[
key
.
Key
]
*
blocks
.
Block
{
func
chunkData
(
t
*
testing
.
T
,
data
[]
byte
)
map
[
key
.
Key
]
blocks
.
Block
{
r
:=
NewRabin
(
bytes
.
NewReader
(
data
),
1024
*
256
)
blkmap
:=
make
(
map
[
key
.
Key
]
*
blocks
.
Block
)
blkmap
:=
make
(
map
[
key
.
Key
]
blocks
.
Block
)
for
{
blk
,
err
:=
r
.
NextBytes
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment