Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for managedStatus (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    		s.recordSuccessGroupResourceLocked(gvr.GroupResource())
    	}
    }
    
    func (s *defaultManager) recordSuccessGroupResourceLocked(gr schema.GroupResource) {
    	if _, ok := s.managedStatus[gr]; !ok {
    		return
    	}
    	s.managedStatus[gr].done = true
    	s.managedStatus[gr].lastErr = nil
    }
    
    // recordStatusFailure records latest error updating ResourceInfo.
    func (s *defaultManager) recordStatusFailure(r *ResourceInfo, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.input

    z bool) {
    }
    func _(x, // comment
    	y,// comment
    	z bool) {
    }
    func _(x int,	// comment
    	y float,	// comment
    	z bool) {
    }
    
    
    // properly indent multi-line signatures
    func ManageStatus(in <-chan *Status, req <-chan Request,
    stat chan<- *TargetInfo,
    TargetHistorySize int) {
    }
    
    func MultiLineSignature0(
    a, b, c int,
    ) {}
    
    func MultiLineSignature1(
    a, b, c int,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.golden

    	z bool) {
    }
    func _(x,	// comment
    	y,	// comment
    	z bool) {
    }
    func _(x int,	// comment
    	y float,	// comment
    	z bool) {
    }
    
    // properly indent multi-line signatures
    func ManageStatus(in <-chan *Status, req <-chan Request,
    	stat chan<- *TargetInfo,
    	TargetHistorySize int) {
    }
    
    func MultiLineSignature0(
    	a, b, c int,
    ) {
    }
    
    func MultiLineSignature1(
    	a, b, c int,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
Back to top