Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for terminateAll (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		klog.Warningf("Terminating all watchers from cacher %v", groupResource)
    	}
    	for _, watchers := range i.allWatchers {
    		watchers.terminateAll(done)
    	}
    	for _, watchers := range i.valueWatchers {
    		watchers.terminateAll(done)
    	}
    	i.allWatchers = map[namespacedName]watchersMap{}
    	i.valueWatchers = map[string]watchersMap{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/text/tabwriter/tabwriter.go

    	}
    	b.pos = len(b.buf)
    	b.endChar = 0
    }
    
    // Terminate the current cell by adding it to the list of cells of the
    // current line. Returns the number of cells in that line.
    func (b *Writer) terminateCell(htab bool) int {
    	b.cell.htab = htab
    	line := &b.lines[len(b.lines)-1]
    	*line = append(*line, b.cell)
    	b.cell = cell{}
    	return len(*line)
    }
    
    func (b *Writer) handlePanic(err *error, op string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top