Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for appendErrors (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    type OpenAPISchemaErrorList struct {
    	SchemaErrors field.ErrorList
    	CELErrors    field.ErrorList
    }
    
    // AppendErrors appends all errors in the provided list with the errors of this list.
    func (o *OpenAPISchemaErrorList) AppendErrors(list *OpenAPISchemaErrorList) {
    	if o == nil || list == nil {
    		return
    	}
    	o.SchemaErrors = append(o.SchemaErrors, list.SchemaErrors...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top