Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InMerge (0.15 sec)

  1. pkg/proxy/endpointschangetracker.go

    func (em EndpointsMap) merge(other EndpointsMap) {
    	for svcPortName := range other {
    		em[svcPortName] = other[svcPortName]
    	}
    }
    
    // Unmerge removes the <service, endpoints> pairs from the current EndpointsMap which are contained in the EndpointsMap passed in.
    func (em EndpointsMap) unmerge(other EndpointsMap) {
    	for svcPortName := range other {
    		delete(em, svcPortName)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top