Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for PlusEquals (0.23 sec)

  1. pilot/pkg/status/distribution/state.go

    	"istio.io/istio/pkg/log"
    )
    
    var scope = log.RegisterScope("status",
    	"CRD distribution status debugging")
    
    type Progress struct {
    	AckedInstances int
    	TotalInstances int
    }
    
    func (p *Progress) PlusEquals(p2 Progress) {
    	p.TotalInstances += p2.TotalInstances
    	p.AckedInstances += p2.AckedInstances
    }
    
    type Controller struct {
    	configStore     model.ConfigStore
    	mu              sync.RWMutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top