(ctx context.Context, o *options.Options, args []string)
| 285 | } |
| 286 | |
| 287 | func (p *Parser) applyMaxBytesOption(ctx context.Context, o *options.Options, args []string) error { |
| 288 | return p.parsePositiveInt(ctx, o, keys.MaxBytes, args...) |
| 289 | } |
| 290 | |
| 291 | func (p *Parser) applyBackgroundOption(ctx context.Context, o *options.Options, args []string) error { |
| 292 | switch len(args) { |
no test coverage detected