Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for appendErrors (0.32 sec)

  1. pkg/config/validation/validation.go

    					errs = appendErrors(errs, security.CheckEmptyValues("Paths", op.Paths))
    					errs = appendErrors(errs, security.CheckEmptyValues("Hosts", op.Hosts))
    					errs = appendErrors(errs, security.CheckEmptyValues("NotPorts", op.NotPorts))
    					errs = appendErrors(errs, security.CheckEmptyValues("NotMethods", op.NotMethods))
    					errs = appendErrors(errs, security.CheckEmptyValues("NotPaths", op.NotPaths))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. pkg/config/validation/virtualservice.go

    			errs = appendErrors(errs, validateStringMatchRegexp(match.GetUri(), "uri"))
    			errs = appendErrors(errs, validateStringMatch(match.GetScheme(), "scheme"))
    			errs = appendErrors(errs, validateStringMatch(match.GetMethod(), "method"))
    			errs = appendErrors(errs, validateStringMatch(match.GetAuthority(), "authority"))
    			for _, qp := range match.GetQueryParams() {
    				errs = appendErrors(errs, validateStringMatch(qp, "queryParams"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top