Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for SampleType (0.19 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    		for i, st := range p.SampleType {
    			if sampleType[i] == nil {
    				ratios[i] = 1
    				continue
    			}
    			ratios[i], _ = Scale(1, st.Unit, sampleType[i].Unit)
    			p.SampleType[i].Unit = sampleType[i].Unit
    		}
    		if err := p.ScaleN(ratios); err != nil {
    			return fmt.Errorf("scale: %v", err)
    		}
    	}
    	return nil
    }
    
    // CommonValueType returns the finest type from a set of compatible
    // types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/net/http/pprof/pprof_test.go

    	if len(p.SampleType) != 2 {
    		t.Errorf("len(p.SampleType) got %d want 2", len(p.SampleType))
    	}
    	if p.SampleType[0].Type != "contentions" {
    		t.Errorf(`p.SampleType[0].Type got %q want "contentions"`, p.SampleType[0].Type)
    	}
    	if p.SampleType[0].Unit != "count" {
    		t.Errorf(`p.SampleType[0].Unit got %q want "count"`, p.SampleType[0].Unit)
    	}
    	if p.SampleType[1].Type != "delay" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/index.go

    					return i, nil
    				}
    			}
    		}
    		// By default select the last sample value
    		return len(p.SampleType) - 1, nil
    	}
    	if i, err := strconv.Atoi(sampleIndex); err == nil {
    		if i < 0 || i >= len(p.SampleType) {
    			return 0, fmt.Errorf("sample_index %s is outside the range [0..%d]", sampleIndex, len(p.SampleType)-1)
    		}
    		return i, nil
    	}
    
    	// Remove the inuse_ prefix to support legacy pprof options
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 19:18:53 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  4. src/internal/profile/profile.go

    	}
    
    	if len(p.SampleType) != len(pb.SampleType) {
    		return fmt.Errorf("incompatible sample types %v and %v", p.SampleType, pb.SampleType)
    	}
    
    	for i := range p.SampleType {
    		if !compatibleValueTypes(p.SampleType[i], pb.SampleType[i]) {
    			return fmt.Errorf("incompatible sample types %v and %v", p.SampleType, pb.SampleType)
    		}
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    	}
    
    	if len(p.SampleType) != len(pb.SampleType) {
    		return fmt.Errorf("incompatible sample types %v and %v", p.SampleType, pb.SampleType)
    	}
    
    	for i := range p.SampleType {
    		if !equalValueType(p.SampleType[i], pb.SampleType[i]) {
    			return fmt.Errorf("incompatible sample types %v and %v", p.SampleType, pb.SampleType)
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/internal/profile/merge.go

    	}
    
    	if len(p.SampleType) != len(pb.SampleType) {
    		return fmt.Errorf("incompatible sample types %v and %v", p.SampleType, pb.SampleType)
    	}
    
    	for i := range p.SampleType {
    		if !equalValueType(p.SampleType[i], pb.SampleType[i]) {
    			return fmt.Errorf("incompatible sample types %v and %v", p.SampleType, pb.SampleType)
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  7. src/runtime/pprof/proto_test.go

    	}
    	if !reflect.DeepEqual(p.PeriodType, periodType) {
    		t.Errorf("p.PeriodType = %v\nwant = %v", fmtJSON(p.PeriodType), fmtJSON(periodType))
    	}
    	if !reflect.DeepEqual(p.SampleType, sampleType) {
    		t.Errorf("p.SampleType = %v\nwant = %v", fmtJSON(p.SampleType), fmtJSON(sampleType))
    	}
    	if defaultSampleType != p.DefaultSampleType {
    		t.Errorf("p.DefaultSampleType = %v\nwant = %v", p.DefaultSampleType, defaultSampleType)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    	for _, st := range p.SampleType {
    		command := fmt.Sprintf("sample_index=%s", st.Type)
    		s[st.Type] = []string{command}
    		s["total_"+st.Type] = []string{"mean=0", command}
    		s["mean_"+st.Type] = []string{"mean=1", command}
    	}
    	return s
    }
    
    func sampleTypes(p *profile.Profile) []string {
    	types := make([]string, len(p.SampleType))
    	for i, t := range p.SampleType {
    		types[i] = t.Type
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  9. src/internal/profile/encode.go

    }
    
    var profileDecoder = []decoder{
    	nil, // 0
    	// repeated ValueType sample_type = 1
    	func(b *buffer, m message) error {
    		x := new(ValueType)
    		pp := m.(*Profile)
    		pp.SampleType = append(pp.SampleType, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Sample sample = 2
    	func(b *buffer, m message) error {
    		x := new(Sample)
    		pp := m.(*Profile)
    		pp.Sample = append(pp.Sample, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		return
    	}
    	ratios := make([]float64, len(p.SampleType))
    	for i := range p.SampleType {
    		ratios[i] = ratio
    	}
    	p.ScaleN(ratios)
    }
    
    // ScaleN multiplies each sample values in a sample by a different amount
    // and keeps only samples that have at least one non-zero value.
    func (p *Profile) ScaleN(ratios []float64) error {
    	if len(p.SampleType) != len(ratios) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top