Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for supportedFeatures (1.03 sec)

  1. pkg/proxy/winkernel/proxier.go

    func newHostNetworkService(hcnImpl HcnService) (HostNetworkService, hcn.SupportedFeatures) {
    	var h HostNetworkService
    	supportedFeatures := hcnImpl.GetSupportedFeatures()
    	if supportedFeatures.Api.V2 {
    		h = hns{
    			hcn: hcnImpl,
    		}
    	} else {
    		panic("Windows HNS Api V2 required. This version of windows does not support API V2")
    	}
    	return h, supportedFeatures
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    			gcs := s.(*k8s.GatewayClassStatus)
    			*gcs = GetClassStatus(gcs, obj.Generation)
    			gcs.SupportedFeatures = supportedFeatures
    			return gcs
    		})
    	}
    
    	return res
    }
    
    // parentKey holds info about a parentRef (eg route binding to a Gateway). This is a mirror of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top