Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for WellKnownList (0.16 sec)

  1. pkg/test/framework/components/echo/config/param/wellknown.go

    )
    
    func (p WellKnown) String() string {
    	return string(p)
    }
    
    type WellKnownList []WellKnown
    
    func (w WellKnownList) ToStringArray() []string {
    	out := make([]string, 0, len(w))
    	for _, item := range w {
    		out = append(out, item.String())
    	}
    	return out
    }
    
    func AllWellKnown() WellKnownList {
    	return []WellKnown{From, To, Namespace, SystemNamespace}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 20 21:58:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top