Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
d72fb46d
Unverified
Commit
d72fb46d
authored
Apr 10, 2024
by
sellskin
Committed by
GitHub
Apr 09, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor: Optimize code by using built-in constants in the standard library (#9963)
Signed-off-by:
sellskin
<
mydesk@yeah.net
>
parent
4c974298
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
sliding_test.go
proxyd/pkg/avg-sliding-window/sliding_test.go
+1
-2
No files found.
proxyd/pkg/avg-sliding-window/sliding_test.go
View file @
d72fb46d
...
@@ -269,8 +269,7 @@ func TestSlidingWindow_CustomBucket(t *testing.T) {
...
@@ -269,8 +269,7 @@ func TestSlidingWindow_CustomBucket(t *testing.T) {
// ts is a convenient method that must parse a time.Time from a string in format `"2006-01-02 15:04:05"`
// ts is a convenient method that must parse a time.Time from a string in format `"2006-01-02 15:04:05"`
func
ts
(
s
string
)
time
.
Time
{
func
ts
(
s
string
)
time
.
Time
{
format
:=
"2006-01-02 15:04:05"
t
,
err
:=
time
.
Parse
(
time
.
DateTime
,
s
)
t
,
err
:=
time
.
Parse
(
format
,
s
)
if
err
!=
nil
{
if
err
!=
nil
{
panic
(
err
)
panic
(
err
)
}
}
...
...
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