Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for AddEvent (0.09 sec)

  1. src/cmd/compile/internal/noder/noder.go

    	for _, p := range noders {
    		for e := range p.err {
    			base.ErrorfAt(m.makeXPos(e.Pos), 0, "%s", e.Msg)
    		}
    		if p.file == nil {
    			base.ErrorExit()
    		}
    		lines += p.file.EOF.Line()
    	}
    	base.Timer.AddEvent(int64(lines), "lines")
    
    	unified(m, noders)
    }
    
    // trimFilename returns the "trimmed" filename of b, which is the
    // absolute filename after applying -trimpath processing. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    			// has expired accidentally.
    			<-w.clock.After(blockTimeout)
    			w.cond.Broadcast()
    		}()
    	}
    
    	w.RLock()
    	span := tracing.SpanFromContext(ctx)
    	span.AddEvent("watchCache locked acquired")
    	for w.resourceVersion < resourceVersion {
    		if w.clock.Since(startTime) >= blockTimeout {
    			// Request that the client retry after 'resourceVersionTooHighRetrySeconds' seconds.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top