Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NewFakeServiceHealthServer (0.68 sec)

  1. pkg/proxy/healthcheck/service_health.go

    		}
    	}
    	return nil
    }
    
    // FakeServiceHealthServer is a fake ServiceHealthServer for test programs
    type FakeServiceHealthServer struct{}
    
    // NewFakeServiceHealthServer allocates a new fake service healthcheck server manager
    func NewFakeServiceHealthServer() ServiceHealthServer {
    	return FakeServiceHealthServer{}
    }
    
    // SyncServices is part of ServiceHealthServer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 30 09:25:48 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier_test.go

    		svcPortMap:          make(proxy.ServicePortMap),
    		endpointsMap:        make(proxy.EndpointsMap),
    		hostname:            testHostName,
    		nodeIP:              nodeIP,
    		serviceHealthServer: healthcheck.NewFakeServiceHealthServer(),
    		network:             *hnsNetworkInfo,
    		sourceVip:           sourceVip,
    		hostMac:             macAddress,
    		isDSR:               false,
    		hns: &hns{
    			hcn: hcnMock,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    		conntrack:             conntrack.NewFake(),
    		strictARP:             false,
    		localDetector:         proxyutil.NewNoOpLocalDetector(),
    		hostname:              testHostname,
    		serviceHealthServer:   healthcheck.NewFakeServiceHealthServer(),
    		ipvsScheduler:         defaultScheduler,
    		iptablesData:          bytes.NewBuffer(nil),
    		filterChainsData:      bytes.NewBuffer(nil),
    		natChains:             proxyutil.NewLineBuffer(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier_test.go

    		masqueradeMark:      "0x4000",
    		conntrack:           conntrack.NewFake(),
    		localDetector:       detectLocal,
    		hostname:            testHostname,
    		serviceHealthServer: healthcheck.NewFakeServiceHealthServer(),
    		nodeIP:              nodeIP,
    		nodePortAddresses:   proxyutil.NewNodePortAddresses(ipFamily, nodePortAddresses),
    		networkInterfacer:   networkInterfacer,
    		staleChains:         make(map[string]time.Time),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    		masqueradeMark:           "0x4000",
    		conntrack:                conntrack.NewFake(),
    		localDetector:            detectLocal,
    		hostname:                 testHostname,
    		serviceHealthServer:      healthcheck.NewFakeServiceHealthServer(),
    		precomputedProbabilities: make([]string, 0, 1001),
    		iptablesData:             bytes.NewBuffer(nil),
    		existingFilterChainsData: bytes.NewBuffer(nil),
    		filterChains:             proxyutil.NewLineBuffer(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top