Lines Matching refs:Errorf
67 Err: fmt.Errorf("unrecognized property %q", name),
92 Err: fmt.Errorf("property %q already defined", name),
96 Err: fmt.Errorf("<-- previous definition here"),
148 panic(fmt.Errorf("field %s is not settable", propertyName))
167 panic(fmt.Errorf("field %s is a non-string slice", propertyName))
172 panic(fmt.Errorf("field %s contains a nil interface", propertyName))
177 panic(fmt.Errorf("field %s contains a non-pointer interface", propertyName))
194 panic(fmt.Errorf("field %s contains a pointer to %s", propertyName, ptrKind))
199 panic(fmt.Errorf(`int field %s must be tagged blueprint:"mutated"`, propertyName))
203 panic(fmt.Errorf("unsupported kind for field %s: %s", propertyName, kind))
222 Err: fmt.Errorf("mutated field %s cannot be set in a Blueprint file", propertyName),
234 Err: fmt.Errorf("filtered field %s cannot be set in a Blueprint file", propertyName),
254 errs = append(errs, fmt.Errorf("nested filter tag not supported on field %q",
303 return value, fmt.Errorf("%s: can't assign %s value to bool property %q",
311 return value, fmt.Errorf("%s: can't assign %s value to int64 property %q",
319 return value, fmt.Errorf("%s: can't assign %s value to string property %q",
327 return value, fmt.Errorf("%s: can't assign %s value to list property %q",
336 panic(fmt.Errorf("non-string value %q found in list", value))
344 panic(fmt.Errorf("unexpected kind %s", kind))
363 fmt.Errorf("%s: can't assign %s value to map property %q",
381 return "", "", fmt.Errorf("unexpected format for filter %q: missing ()", entry)
388 return "", "", fmt.Errorf("unexpected format for filter %q: expected single ':'", entry)
393 return "", "", fmt.Errorf("unexpected format for filter %q: %s", entry, err.Error())