Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Vb (0.02 sec)

  1. pkg/config/validation/validation.go

    func coveredValidation(vA, vB *OverlappingMatchValidationForHTTPRoute) bool {
    	// check the URI overlapping match, such as vB.Prefix is '/debugs' and vA.Prefix is '/debug'
    	if strings.HasPrefix(vB.Prefix, vA.Prefix) {
    		// check the port field
    		if vB.MatchPort != vA.MatchPort {
    			return false
    		}
    
    		// check the match method
    		if vA.MatchMethod != vB.MatchMethod {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top