Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				return e.Workload
    			})
    			assert.Equal(t, wl, tt.result)
    		})
    	}
    }
    
    func newAmbientUnitTest() *index {
    	return &index{
    		networkUpdateTrigger: krt.NewRecomputeTrigger(),
    		ClusterID:            testC,
    		Network: func(endpointIP string, labels labels.Instance) network.ID {
    			return testNW
    		},
    	}
    }
    
    var podReady = []v1.PodCondition{
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	DomainSuffix    string
    	ClusterID       cluster.ID
    	XDSUpdater      model.XDSUpdater
    	LookupNetwork   LookupNetwork
    }
    
    func New(options Options) Index {
    	a := &index{
    		networkUpdateTrigger: krt.NewRecomputeTrigger(),
    
    		SystemNamespace: options.SystemNamespace,
    		DomainSuffix:    options.DomainSuffix,
    		ClusterID:       options.ClusterID,
    		XDSUpdater:      options.XDSUpdater,
    		Network:         options.LookupNetwork,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top