You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libimage/filters.go
+21-4Lines changed: 21 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ type compiledFilters map[string][]filterFunc
25
25
26
26
// Apply the specified filters. All filters of each key must apply.
27
27
// tree must be provided if compileImageFilters indicated it is necessary.
28
+
// WARNING: Application of referenceFilter sets the image names to matched names, but this only affects the values in memory, they are not written to storage.
@@ -51,6 +52,7 @@ func (i *Image) applyFilters(ctx context.Context, filters compiledFilters, tree
51
52
// filterImages returns a slice of images which are passing all specified
52
53
// filters.
53
54
// tree must be provided if compileImageFilters indicated it is necessary.
55
+
// WARNING: Application of referenceFilter sets the image names to matched names, but this only affects the values in memory, they are not written to storage.
0 commit comments