• Home
  • Raw
  • Download

Lines Matching refs:Errorf

67 				Err: fmt.Errorf("unrecognized property %q", name),
93 Err: fmt.Errorf("property %q already defined", name),
97 Err: fmt.Errorf("<-- previous definition here"),
140 panic(fmt.Errorf("field %s is not settable", propertyName))
151 panic(fmt.Errorf("field %s is a non-string slice", propertyName))
155 panic(fmt.Errorf("field %s contains a nil interface", propertyName))
160 panic(fmt.Errorf("field %s contains a non-pointer interface", propertyName))
167 panic(fmt.Errorf("field %s contains a nil pointer", propertyName))
173 panic(fmt.Errorf("field %s contains a pointer to %s", propertyName, ptrKind))
178 panic(fmt.Errorf(`int field %s must be tagged blueprint:"mutated"`, propertyName))
182 panic(fmt.Errorf("unsupported kind for field %s: %s", propertyName, kind))
203 Err: fmt.Errorf("mutated field %s cannot be set in a Blueprint file", propertyName),
215 Err: fmt.Errorf("filtered field %s cannot be set in a Blueprint file", propertyName),
244 panic(fmt.Errorf("unexpected pointer kind %s", ptrKind))
255 errs = append(errs, fmt.Errorf("nested filter tag not supported on field %q",
267 panic(fmt.Errorf("unexpected kind %s", kind))
281 fmt.Errorf("%s: can't assign %s value to %s property %q",
295 fmt.Errorf("%s: can't assign %s value to %s property %q",
307 fmt.Errorf("%s: can't assign %s value to %s property %q",
332 fmt.Errorf("%s: can't assign %s value to %s property %q",
351 return "", "", fmt.Errorf("unexpected format for filter %q: missing ()", entry)
358 return "", "", fmt.Errorf("unexpected format for filter %q: expected single ':'", entry)
363 return "", "", fmt.Errorf("unexpected format for filter %q: %s", entry, err.Error())