Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for dwarf (0.03 sec)

  1. src/cmd/link/internal/ld/macho.go

    		relocSect(ctxt, sect, ctxt.datap)
    	}
    	for i := 0; i < len(Segdwarf.Sections); i++ {
    		sect := Segdwarf.Sections[i]
    		si := dwarfp[i]
    		if si.secSym() != loader.Sym(sect.Sym) ||
    			ctxt.loader.SymSect(si.secSym()) != sect {
    			panic("inconsistency between dwarfp and Segdwarf")
    		}
    		relocSect(ctxt, sect, si.syms)
    	}
    	wg.Wait()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/arm64/asm.go

    		if t == sym.STEXT {
    			// Except for Duff's devices (handled above), we don't
    			// target the middle of a function.
    			continue
    		}
    		if t >= sym.SDWARFSECT {
    			continue // no need to add label for DWARF symbols
    		}
    		sz := ldr.SymSize(s)
    		if sz <= limit {
    			continue
    		}
    		addLabelSyms(s, limit, sz)
    	}
    
    	// Also for carrier symbols (for which SymSize is 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    	const char __cgodebug_str__10[] = s10;
    	const unsigned long long __cgodebug_strlen__10 = sizeof(s10)-1;
    
    and again invokes the system C compiler, to produce an object file
    containing debug information. Cgo parses the DWARF debug information
    for __cgo__N to learn the type of each identifier. (The types also
    distinguish functions from global variables.) Cgo reads the constant
    values from the __cgodebug_* from the object file's data segment.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/bigger-applications.md

    ```
    
    Da der Pfad jeder *Pfadoperation* mit `/` beginnen muss, wie in:
    
    ```Python hl_lines="1"
    @router.get("/{item_id}")
    async def read_item(item_id: str):
        ...
    ```
    
    ... darf das Präfix kein abschließendes `/` enthalten.
    
    Das Präfix lautet in diesem Fall also `/items`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top