Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
482 B
Go
25 lines
482 B
Go
package window
|
|
|
|
// Rolling generates a rolling window of size N for a sequence of string tokens.
|
|
func Rolling(elements []string, n int) [][]string {
|
|
if len(elements) == 0 || len(elements) < n || n <= 0 {
|
|
return nil
|
|
}
|
|
|
|
var (
|
|
accum = make([][]string, len(elements)+1-n)
|
|
j int
|
|
)
|
|
|
|
for i := 0; i < len(elements)+1-n; i++ {
|
|
win := make([]string, n)
|
|
win[0] = elements[i]
|
|
for j = 0; j+1 < n; j++ {
|
|
win[j+1] = elements[i+j+1]
|
|
}
|
|
accum[i] = win
|
|
}
|
|
|
|
return accum
|
|
}
|