Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for cstab (0.15 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    	if resultNameTab != nil {
    		csa.rescoreBasedOnCallResultUses(fn, resultNameTab, cstab)
    	}
    
    	disableDebugTrace()
    
    	if ic != nil && callSiteTab != nil {
    		// Integrate the calls from this cstab into the table for the caller.
    		if err := callSiteTab.merge(cstab); err != nil {
    			base.FatalfAt(ic.Pos(), "%v", err)
    		}
    	} else {
    		callSiteTab = cstab
    	}
    }
    
    // ScoreCallsCleanup resets the state of the callsite cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/helper.go

    		}
    		if cstat.Cpu != nil {
    			cpuStats.UsageCoreNanoSeconds = &cstat.Cpu.Usage.Total
    		}
    	}
    	if info.Spec.HasMemory && cstat.Memory != nil {
    		pageFaults := cstat.Memory.ContainerData.Pgfault
    		majorPageFaults := cstat.Memory.ContainerData.Pgmajfault
    		memoryStats = &statsapi.MemoryStats{
    			Time:            metav1.NewTime(cstat.Timestamp),
    			UsageBytes:      &cstat.Memory.Usage,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. src/cmd/covdata/metamerge.go

    	// array and then call "f" on it.
    	for pidx, p := range mm.pkgs {
    		fids := make([]int, 0, len(p.ctab))
    		for fid := range p.ctab {
    			fids = append(fids, int(fid))
    		}
    		sort.Ints(fids)
    		if *verbflag >= 4 {
    			fmt.Printf("fids for pk=%d: %+v\n", pidx, fids)
    		}
    		for _, fid := range fids {
    			fp := p.ctab[uint32(fid)]
    			if *verbflag >= 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cadvisor_stats_provider.go

    	if !info.Spec.HasCpu || !info.Spec.HasMemory {
    		return false
    	}
    	cstat, found := latestContainerStats(info)
    	if !found {
    		return false
    	}
    	if cstat.CpuInst == nil {
    		return false
    	}
    	return cstat.CpuInst.Usage.Total != 0 && cstat.Memory.RSS != 0
    }
    
    // isContainerTerminated returns true if the specified container meet one of the following conditions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. src/debug/gosym/pclntab.go

    			if f.cuOffset() == ^uint32(0) {
    				// skip functions without compilation unit (not real function, or linker generated)
    				continue
    			}
    			cutab = t.cutab[f.cuOffset()*4:]
    		}
    		pc := t.findFileLine(entry, filetab, linetab, int32(filenum), int32(line), cutab)
    		if pc != 0 {
    			return pc
    		}
    	}
    	return 0
    }
    
    // initFileMap initializes the map from file name to file number.
    func (t *LineTable) initFileMap() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pcln.go

    // of the index at which each CU begins in runtime.cutab.
    //
    // Function objects keep track of the files they reference to print the stack.
    // This function creates a per-CU list of filenames if CU[M] references
    // files[1-N], the following is generated:
    //
    //	runtime.cutab:
    //	  CU[M]
    //	   offsetToFilename[0]
    //	   offsetToFilename[1]
    //	   ..
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/bugreport/bugreport.go

    		}
    		clog = "========= Previous log present (appended at the end) =========\n\n" + clog +
    			"\n\n========= Previous log =========\n\n" + pclog
    	}
    	var cstat *processlog.Stats
    	clog, cstat = processlog.Process(config, clog)
    	return clog, cstat, cstat.Importance(), nil
    }
    
    func runAnalyze(config *config.BugReportConfig, params *content.Params, analyzeTimeout time.Duration) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. src/internal/coverage/decodecounter/decodecounterfile.go

    		return err
    	}
    	if nr != int(cdr.shdr.StrTabLen) {
    		return fmt.Errorf("error: short read on string table")
    	}
    	slr := slicereader.NewReader(b, false /* not readonly */)
    	cdr.stab = stringtab.NewReader(slr)
    	cdr.stab.Read()
    	return nil
    }
    
    func (cdr *CounterDataReader) readArgs() error {
    	b := make([]byte, cdr.shdr.ArgsLen)
    	nr, err := cdr.mr.Read(b)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. src/internal/xcoff/xcoff.go

    	Xparmhash uint32 // Offset of parameter type-check string
    	Xsnhash   uint16 // .typchk section number
    	Xsmtyp    uint8  // Symbol alignment and type
    	Xsmclas   uint8  // Storage-mapping class
    	Xstab     uint32 // Reserved
    	Xsnstab   uint16 // Reserved
    }
    
    type AuxCSect64 struct {
    	Xscnlenlo uint32 // Lower 4 bytes of length or symbol table index
    	Xparmhash uint32 // Offset of parameter type-check string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    	textStart      uintptr // base for function entry PC offsets in this module, equal to moduledata.text
    	funcnameOffset uintptr // offset to the funcnametab variable from pcHeader
    	cuOffset       uintptr // offset to the cutab variable from pcHeader
    	filetabOffset  uintptr // offset to the filetab variable from pcHeader
    	pctabOffset    uintptr // offset to the pctab variable from pcHeader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top