Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for InsertOrNew (0.21 sec)

  1. tools/bug-report/pkg/bugreport/bugreport.go

    		proxyInfo, err := proxy.GetProxyInfo(client, istioNamespace)
    		if err != nil {
    			log.Error(err)
    			continue
    		}
    		for _, pi := range *proxyInfo {
    			sets.InsertOrNew(proxyVersionsMap, revision, pi.IstioVersion)
    		}
    	}
    	for revision, vmap := range proxyVersionsMap {
    		for v := range vmap {
    			proxyVersions[revision] = append(proxyVersions[revision], v)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    		// Use the value 0 as a sentinel indicating that one of the destinations
    		// in the Virtual Service does not specify a port for this host.
    		pn := 0
    		if port != nil {
    			pn = int(port.Number)
    		}
    		sets.InsertOrNew(out, host, pn)
    	}
    
    	for _, h := range v.Http {
    		for _, r := range h.Route {
    			if r.Destination != nil {
    				addDestination(r.Destination.Host, r.Destination.GetPort())
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top