Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for instrument2 (0.15 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	if base.Flag.MSan {
    		s.instrument2(t, dst, src, instrumentMove)
    	} else {
    		s.instrument(t, src, instrumentRead)
    		s.instrument(t, dst, instrumentWrite)
    	}
    }
    
    func (s *state) instrument2(t *types.Type, addr, addr2 *ssa.Value, kind instrumentKind) {
    	if !s.instrumentMemory {
    		return
    	}
    
    	w := t.Size()
    	if w == 0 {
    		return // can't race on zero-sized things
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * 📝 Add hyperlink to `docs/en/docs/tutorial/static-files.md`. PR [#10243](https://github.com/tiangolo/fastapi/pull/10243) by [@hungtsetse](https://github.com/hungtsetse).
    * 📝 Add External Link: Instrument a FastAPI service adding tracing with OpenTelemetry and send/show traces in Grafana Tempo. PR [#9440](https://github.com/tiangolo/fastapi/pull/9440) by [@softwarebloat](https://github.com/softwarebloat).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top