Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for seenSources (0.37 sec)

  1. pkg/kubelet/config/config.go

    	return seenSources.HasAll(sets.List(c.sources)...) && c.pods.seenSources(sets.List(c.sources)...)
    }
    
    // Updates returns a channel of updates to the configuration, properly denormalized.
    func (c *PodConfig) Updates() <-chan kubetypes.PodUpdate {
    	return c.updates
    }
    
    // Sync requests the full configuration be delivered to the update channel.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/kubelet/config/config_test.go

    	config := NewPodConfig(PodConfigNotificationIncremental, eventBroadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "kubelet"}), &mockPodStartupSLIObserver{})
    	seenSources := sets.New[string](TestSource)
    	var wg sync.WaitGroup
    	const iterations = 100
    	wg.Add(2)
    
    	go func() {
    		ctx, cancel := context.WithCancel(tCtx)
    		defer cancel()
    		defer wg.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top