Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for strictable (0.54 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		s.locationIDX = nil
    	}
    
    	p.DropFrames, err = getString(p.stringTable, &p.dropFramesX, err)
    	p.KeepFrames, err = getString(p.stringTable, &p.keepFramesX, err)
    
    	if pt := p.PeriodType; pt == nil {
    		p.PeriodType = &ValueType{}
    	}
    
    	if pt := p.PeriodType; pt != nil {
    		pt.Type, err = getString(p.stringTable, &pt.typeX, err)
    		pt.Unit, err = getString(p.stringTable, &pt.unitX, err)
    	}
    
    	for _, i := range p.commentX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. src/internal/profile/encode.go

    		m.File, err = getString(p.stringTable, &m.fileX, err)
    		m.BuildID, err = getString(p.stringTable, &m.buildIDX, err)
    		mappings[m.ID] = m
    	}
    
    	functions := make(map[uint64]*Function)
    	for _, f := range p.Function {
    		f.Name, err = getString(p.stringTable, &f.nameX, err)
    		f.SystemName, err = getString(p.stringTable, &f.systemNameX, err)
    		f.Filename, err = getString(p.stringTable, &f.filenameX, err)
    		functions[f.ID] = f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

            Metadata(
                kind = kind.id,
                metadataVersion = metadataVersion.toArray(),
                data1 = JvmProtoBufUtil.writeData(message, stringTable),
                data2 = stringTable.strings.toTypedArray(),
                extraInt = JvmBackendExtension.Default.generateMetadataExtraFlags(JvmAbiStability.STABLE) or
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/debug/pe/file.go

    	Sections       []*Section
    	Symbols        []*Symbol    // COFF symbols with auxiliary symbol records removed
    	COFFSymbols    []COFFSymbol // all COFF symbols (including auxiliary symbol records)
    	StringTable    StringTable
    
    	closer io.Closer
    }
    
    // Open opens the named file using [os.Open] and prepares it for use as a PE binary.
    func Open(name string) (*File, error) {
    	f, err := os.Open(name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	// one byte. Further, the staticTable has a fixed, small length.
    	return d.dynTab.table.len() + staticTable.len()
    }
    
    func (d *Decoder) at(i uint64) (hf HeaderField, ok bool) {
    	// See Section 2.3.3.
    	if i == 0 {
    		return
    	}
    	if i <= uint64(staticTable.len()) {
    		return staticTable.ents[i-1], true
    	}
    	if i > uint64(d.maxTableIndex()) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  6. api/go1.8.txt

    pkg database/sql, type TxOptions struct, ReadOnly bool
    pkg debug/pe, method (*COFFSymbol) FullName(StringTable) (string, error)
    pkg debug/pe, method (StringTable) String(uint32) (string, error)
    pkg debug/pe, type File struct, COFFSymbols []COFFSymbol
    pkg debug/pe, type File struct, StringTable StringTable
    pkg debug/pe, type Reloc struct
    pkg debug/pe, type Reloc struct, SymbolTableIndex uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  7. src/internal/xcoff/file.go

    type FileHeader struct {
    	TargetMachine uint16
    }
    
    // A File represents an open XCOFF file.
    type File struct {
    	FileHeader
    	Sections     []*Section
    	Symbols      []*Symbol
    	StringTable  []byte
    	LibraryPaths []string
    
    	closer io.Closer
    }
    
    // Open opens the named file using os.Open and prepares it for use as an XCOFF binary.
    func Open(name string) (*File, error) {
    	f, err := os.Open(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadpe/ldpe.go

    			}
    			pesym := &f.COFFSymbols[r.SymbolTableIndex]
    			_, gosym, err := state.readpesym(pesym)
    			if err != nil {
    				return nil, err
    			}
    			if gosym == 0 {
    				name, err := pesym.FullName(f.StringTable)
    				if err != nil {
    					name = string(pesym.Name[:])
    				}
    				return nil, fmt.Errorf("reloc of invalid sym %s idx=%d type=%d", name, r.SymbolTableIndex, pesym.Type)
    			}
    
    			rSym := gosym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. src/internal/trace/generation.go

    }
    
    // addStrings takes a batch whose first byte is an EvStrings event
    // (indicating that the batch contains only strings) and adds each
    // string contained therein to the provided strings map.
    func addStrings(stringTable *dataTable[stringID, string], b batch) error {
    	if !b.isStringsBatch() {
    		return fmt.Errorf("internal error: addStrings called on non-string batch")
    	}
    	r := bytes.NewReader(b.data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/debug/elf/file.go

    // For an [SHT_NOBITS] section, Data always returns a non-nil error.
    func (s *Section) Data() ([]byte, error) {
    	return saferio.ReadData(s.Open(), s.Size)
    }
    
    // stringTable reads and returns the string table given by the
    // specified link value.
    func (f *File) stringTable(link uint32) ([]byte, error) {
    	if link <= 0 || link >= uint32(len(f.Sections)) {
    		return nil, errors.New("section has invalid string table link")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top