• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mendersoftware / mender-server / 1495380963

14 Oct 2024 03:35PM UTC coverage: 70.373% (-2.5%) from 72.904%
1495380963

Pull #101

gitlab-ci

mineralsfree
feat: tenant list added

Ticket: MEN-7568
Changelog: None

Signed-off-by: Mikita Pilinka <mikita.pilinka@northern.tech>
Pull Request #101: feat: tenant list added

4406 of 6391 branches covered (68.94%)

Branch coverage included in aggregate %.

88 of 183 new or added lines in 10 files covered. (48.09%)

2623 existing lines in 65 files now uncovered.

36673 of 51982 relevant lines covered (70.55%)

31.07 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/backend/services/workflows/app/worker/timer.go
1
// Copyright 2022 Northern.tech AS
2
//
3
//    Licensed under the Apache License, Version 2.0 (the "License");
4
//    you may not use this file except in compliance with the License.
5
//    You may obtain a copy of the License at
6
//
7
//        http://www.apache.org/licenses/LICENSE-2.0
8
//
9
//    Unless required by applicable law or agreed to in writing, software
10
//    distributed under the License is distributed on an "AS IS" BASIS,
11
//    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
//    See the License for the specific language governing permissions and
13
//    limitations under the License.
14

15
package worker
16

17
import "time"
18

19
// reusableTimer allows using the time.After interface without reallocations.
20
type reusableTimer time.Timer
21

UNCOV
22
func newStoppedTimer() *reusableTimer {
×
UNCOV
23
        t := (*reusableTimer)(time.NewTimer(0))
×
UNCOV
24
        t.Stop()
×
UNCOV
25
        return t
×
UNCOV
26
}
×
27

28
// Stop ensures that the timer is stopped and the channel is cleared.
UNCOV
29
func (t *reusableTimer) Stop() {
×
UNCOV
30
        if (*time.Timer)(t).Stop() {
×
UNCOV
31
                select {
×
32
                case <-t.C:
×
UNCOV
33
                default:
×
34
                }
35
        }
36
}
37

UNCOV
38
func (t *reusableTimer) Reset(d time.Duration) {
×
UNCOV
39
        t.Stop()
×
UNCOV
40
        (*time.Timer)(t).Reset(d)
×
UNCOV
41
}
×
42

UNCOV
43
func (t *reusableTimer) After(d time.Duration) <-chan time.Time {
×
UNCOV
44
        t.Reset(d)
×
UNCOV
45
        return t.C
×
UNCOV
46
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc