Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SetGot (0.15 sec)

  1. src/cmd/link/internal/loader/symbolbuilder.go

    func (sb *SymbolBuilder) SetDynimpvers(value string) { sb.l.SetSymDynimpvers(sb.symIdx, value) }
    func (sb *SymbolBuilder) SetPlt(value int32)         { sb.l.SetPlt(sb.symIdx, value) }
    func (sb *SymbolBuilder) SetGot(value int32)         { sb.l.SetGot(sb.symIdx, value) }
    func (sb *SymbolBuilder) SetSpecial(value bool)      { sb.l.SetAttrSpecial(sb.symIdx, value) }
    func (sb *SymbolBuilder) SetLocal(value bool)        { sb.l.SetAttrLocal(sb.symIdx, value) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/arm/asm.go

    		got := ldr.MakeSymbolUpdater(syms.GOTPLT)
    		rel := ldr.MakeSymbolUpdater(syms.RelPLT)
    		if plt.Size() == 0 {
    			panic("plt is not set up")
    		}
    
    		// .got entry
    		ldr.SetGot(s, int32(got.Size()))
    
    		// In theory, all GOT should point to the first PLT entry,
    		// Linux/ARM's dynamic linker will do that for us, but FreeBSD/ARM's
    		// dynamic linker won't, so we'd better do it ourselves.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadpe/ldpe.go

    			// X immediately.
    			if !isText {
    				r.SetSym(isym)
    				continue
    			}
    			// Flag this imp symbol to be processed later in windynrelocsym.
    			ldr.SetGot(rs, RedirectToDynImportGotToken)
    			// Consistency check: should be no PLT token here.
    			splt := ldr.SymPlt(rs)
    			if splt != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	}
    	if rx != nil && matched == 0 {
    		return fmt.Errorf("no matches found for regexp: %s", rx)
    	}
    	return nil
    }
    
    // GetDOT returns a graph suitable for dot processing along with some
    // configuration information.
    func GetDOT(rpt *Report) (*graph.Graph, *graph.DotConfig) {
    	g, origCount, droppedNodes, droppedEdges := rpt.newTrimmedGraph()
    	rpt.selectOutputUnit(g)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	rpt, errList := ui.makeReport(w, req, []string{"svg"}, nil)
    	if rpt == nil {
    		return // error already reported
    	}
    
    	// Generate dot graph.
    	g, config := report.GetDOT(rpt)
    	legend := config.Labels
    	config.Labels = nil
    	dot := &bytes.Buffer{}
    	graph.ComposeDot(dot, g, &graph.DotAttributes{}, config)
    
    	// Convert to svg.
    	svg, err := dotToSvg(dot.Bytes())
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. docs/tr/docs/alternatives.md

    ```
    
    `requests.get(...)` ile `@app.get(...)` arasındaki benzerliklere bakın.
    
    !!! check "**FastAPI**'a nasıl ilham verdi?"
        * Basit ve sezgisel bir API'ya sahip olmalı.
        * HTTP metot isimlerini (işlemlerini) anlaşılır olacak bir şekilde, direkt kullanmalı.
        * Mantıklı varsayılan değerlere ve buna rağmen güçlü bir özelleştirme desteğine sahip olmalı.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top