Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .trunk/trunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@ runtimes:
lint:
enabled:
- [email protected]
- trivy@0.59.1
- renovate@39.175.3
- trivy@0.60.0
- renovate@39.190.1
- [email protected]
- [email protected].372
- [email protected].382
- git-diff-check
- [email protected]
- [email protected].5
- [email protected].6
- [email protected]
- [email protected]
- [email protected]
- [email protected].1:
- [email protected].3:
packages:
- [email protected]
- [email protected]
- [email protected]
- [email protected].10
- [email protected].15
- [email protected]
definitions:
- name: osv-scanner
Expand Down
4 changes: 1 addition & 3 deletions go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
go 1.23.1

toolchain go1.24.0
go 1.24.0

use (
./lib/manifest
Expand Down
3 changes: 1 addition & 2 deletions runtime/collections/in_mem/hnsw/vector_index_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
package hnsw

import (
"context"
"fmt"
"sync"
"testing"
Expand All @@ -19,7 +18,7 @@ import (
)

func TestMultipleSequentialVectorIndexes(t *testing.T) {
ctx := context.Background()
ctx := t.Context()

// Define the base data to be inserted
baseTextIds := []int64{1, 2, 3}
Expand Down
3 changes: 1 addition & 2 deletions runtime/collections/in_mem/sequential/vector_index_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
package sequential

import (
"context"
"fmt"
"sync"
"testing"
Expand All @@ -19,7 +18,7 @@ import (
)

func TestMultipleSequentialVectorIndexes(t *testing.T) {
ctx := context.Background()
ctx := t.Context()

// Define the base data to be inserted
baseTextIds := []int64{1, 2, 3}
Expand Down
3 changes: 1 addition & 2 deletions runtime/collections/in_mem/text_index_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@
package in_mem

import (
"context"
"fmt"
"sync"
"testing"
)

func TestMultipleInMemCollections(t *testing.T) {
ctx := context.Background()
ctx := t.Context()

// Create a wait group to synchronize the goroutines
var wg sync.WaitGroup
Expand Down
Loading
Loading