Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for removeContent (0.18 sec)

  1. pilot/pkg/config/file/store.go

    		}
    	}
    	s.byFile[name] = newKeys
    
    	if parseErrs != nil {
    		return fmt.Errorf("errors parsing content %q: %v", name, parseErrs)
    	}
    	return nil
    }
    
    // RemoveContent removes the content for the given name
    func (s *KubeSource) RemoveContent(name string) {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    
    	keys := s.byFile[name]
    	if keys != nil {
    		for key, col := range keys {
    			empty := ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers_test.go

    	terminating           map[types.UID]bool
    	terminated            map[types.UID]bool
    	terminationRequested  map[types.UID]bool
    	finished              map[types.UID]bool
    	removeRuntime         map[types.UID]bool
    	removeContent         map[types.UID]bool
    	terminatingStaticPods map[string]bool
    }
    
    func (f *fakePodWorkers) UpdatePod(options UpdatePodOptions) {
    	f.lock.Lock()
    	defer f.lock.Unlock()
    	var uid types.UID
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top