WithLimitSet returns a copy of ctx carrying l.
(ctx context.Context, l *limits.LimitSet)
| 154 | |
| 155 | // WithLimitSet returns a copy of ctx carrying l. |
| 156 | func WithLimitSet(ctx context.Context, l *limits.LimitSet) context.Context { |
| 157 | return limitContext{ctx, l} |
| 158 | } |
| 159 | |
| 160 | type limitContext struct { |
| 161 | context.Context |
no outgoing calls
searching dependent graphs…