Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for asIdent (0.1 sec)

  1. src/internal/trace/base.go

    type cpuSample struct {
    	schedCtx
    	time  Time
    	stack stackID
    }
    
    // asEvent produces a complete Event from a cpuSample. It needs
    // the evTable from the generation that created it.
    //
    // We don't just store it as an Event in generation to minimize
    // the amount of pointer data floating around.
    func (s cpuSample) asEvent(table *evTable) Event {
    	// TODO(mknyszek): This is go122-specific, but shouldn't be.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/internal/trace/reader.go

    		}
    		return true, nil
    	}
    	// Inject a CPU sample if it comes next.
    	if len(r.cpuSamples) != 0 {
    		if len(r.frontier) == 0 || r.cpuSamples[0].time < r.frontier[0].ev.time {
    			e := r.cpuSamples[0].asEvent(r.gen.evTable)
    			r.cpuSamples = r.cpuSamples[1:]
    			return e, nil
    		}
    	}
    	// Try to advance the head of the frontier, which should have the minimum timestamp.
    	// This should be by far the most common case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. docs/fr/docs/fastapi-people.md

    ...Mais ici, je veux vous montrer la communauté.
    
    ---
    
    **FastAPI** reçoit beaucoup de soutien de la part de la communauté. Et je tiens à souligner leurs contributions.
    
    Ce sont ces personnes qui :
    
    * [Aident les autres à résoudre des problèmes (questions) dans GitHub](help-fastapi.md#aider-les-autres-a-resoudre-les-problemes-dans-github){.internal-link target=_blank}.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top