Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for It (0.14 sec)

  1. istioctl/pkg/util/configdump/route.go

    	}
    	if lastUpdated.After(time.Unix(0, 0)) { // if a timestamp was obtained from a drc
    		return &lastUpdated, nil
    	}
    	return nil, nil
    }
    
    // GetDynamicRouteDump retrieves a route dump with just dynamic active routes in it
    func (w *Wrapper) GetDynamicRouteDump(stripVersions bool) (*admin.RoutesConfigDump, error) {
    	routeDump, err := w.GetRouteConfigDump()
    	if err != nil {
    		return nil, err
    	}
    	drc := routeDump.GetDynamicRouteConfigs()
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 3.2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/route.go

    			// if the domain contains IPv6, such as [fd00:10:96::7fc7] and [fd00:10:96::7fc7]:8090
    		} else if strings.Count(d, ":") > 2 {
    			// if the domain is only a IPv6 address, such as [fd00:10:96::7fc7], append it
    			if strings.HasSuffix(d, "]") {
    				withoutPort = append(withoutPort, d)
    			}
    		}
    	}
    	withoutPort = unexpandDomains(withoutPort)
    	if len(withoutPort) > max {
    		ret := strings.Join(withoutPort[:max], ", ")
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu May 11 05:38:17 GMT 2023
    - 7.2K bytes
    - Viewed (0)
Back to top