1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-10-04 04:05:33 -04:00
gitea/models/repo
oliverpool d547b53cca
Add container.FilterSlice function (#30339)
Many places have the following logic:
```go
func (jobs ActionJobList) GetRunIDs() []int64 {
	ids := make(container.Set[int64], len(jobs))
	for _, j := range jobs {
		if j.RunID == 0 {
			continue
		}
		ids.Add(j.RunID)
	}
	return ids.Values()
}
```

this introduces a `container.FilterMapUnique` function, which reduces
the code above to:
```go
func (jobs ActionJobList) GetRunIDs() []int64 {
	return container.FilterMapUnique(jobs, func(j *ActionRunJob) (int64, bool) {
		return j.RunID, j.RunID != 0
	})
}
```
2024-04-09 20:27:30 +08:00
..
archiver.go
attachment_test.go
attachment.go Do some performance optimize for issues list and view issue/pull (#29515) 2024-03-12 07:23:44 +00:00
avatar.go
collaboration_test.go Add user blocking (#29028) 2024-03-04 08:16:03 +00:00
collaboration.go Add user blocking (#29028) 2024-03-04 08:16:03 +00:00
fork_test.go
fork.go
git.go
issue.go Clean up log messages (#30313) 2024-04-07 19:17:06 +08:00
language_stats.go
main_test.go
mirror.go
pushmirror_test.go
pushmirror.go
redirect_test.go
redirect.go
release_test.go
release.go Refactor some Str2html code (#29397) 2024-03-01 07:11:51 +00:00
repo_indexer.go
repo_list_test.go migrate some more "OptionalBool" to "Option[bool]" (#29479) 2024-02-29 18:52:49 +00:00
repo_list.go Add container.FilterSlice function (#30339) 2024-04-09 20:27:30 +08:00
repo_test.go Add user blocking (#29028) 2024-03-04 08:16:03 +00:00
repo_unit_test.go
repo_unit.go Fix projects mode bugs (#29593) 2024-03-04 20:49:21 +00:00
repo.go Some performance optimization on dashboard and issues page (#29010) 2024-03-12 04:57:19 +00:00
search.go
star_test.go Add user blocking (#29028) 2024-03-04 08:16:03 +00:00
star.go Add user blocking (#29028) 2024-03-04 08:16:03 +00:00
topic_test.go Refactor topic Find functions and add more tests for pagination (#30127) 2024-03-29 11:38:16 +08:00
topic.go Refactor topic Find functions and add more tests for pagination (#30127) 2024-03-29 11:38:16 +08:00
update.go
upload.go
user_repo_test.go Add user blocking (#29028) 2024-03-04 08:16:03 +00:00
user_repo.go Add user blocking (#29028) 2024-03-04 08:16:03 +00:00
watch_test.go Add user blocking (#29028) 2024-03-04 08:16:03 +00:00
watch.go Add user blocking (#29028) 2024-03-04 08:16:03 +00:00
wiki_test.go
wiki.go