Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for syncCerts (0.6 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	}
    
    	return newContent, nil
    }
    
    // syncCerts gets newTLSContent, if it has changed from the existing, the content is parsed and stored for usage in
    // GetConfigForClient.
    func (c *DynamicServingCertificateController) syncCerts() error {
    	newContent, err := c.newTLSContent()
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. pkg/kube/krt/join.go

    }
    
    func (j *join[T]) RegisterBatch(f func(o []Event[T], initialSync bool), runExistingState bool) Syncer {
    	sync := multiSyncer{}
    	for _, c := range j.collections {
    		sync.syncers = append(sync.syncers, c.RegisterBatch(f, runExistingState))
    	}
    	return sync
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (j *join[T]) augment(a any) any {
    	// not supported in this collection type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/kube/util.go

    		//   entirely local
    	}
    	return nil
    }
    
    type Syncer interface {
    	HasSynced() bool
    }
    
    func AllSynced[T Syncer](syncers []T) bool {
    	for _, h := range syncers {
    		if !h.HasSynced() {
    			return false
    		}
    	}
    	return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top