Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Sel (0.05 sec)

  1. pkg/config/validation/validation.go

    func validateWasmPluginMatch(selectors []*extensions.WasmPlugin_TrafficSelector) error {
    	if len(selectors) == 0 {
    		return nil
    	}
    	for selIdx, sel := range selectors {
    		if sel == nil {
    			return fmt.Errorf("spec.Match[%d] is nil", selIdx)
    		}
    		for portIdx, port := range sel.Ports {
    			if port == nil {
    				return fmt.Errorf("spec.Match[%d].Ports[%d] is nil", selIdx, portIdx)
    			}
    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