Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for kind_string (0.14 sec)

  1. src/cmd/compile/internal/types/kind_string.go

    Matthew Dempsky <******@****.***> 1669944280 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:38 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/go/constant/kind_string.go

    Robert Griesemer <******@****.***> 1621277393 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 17 19:11:05 UTC 2021
    - 676 bytes
    - Viewed (0)
  3. src/internal/trace/event/go122/event.go

    		Name:         "GoStatus",
    		Args:         []string{"dt", "g", "m", "gstatus"},
    		IsTimedEvent: true,
    	},
    	EvSTWBegin: event.Spec{
    		Name:         "STWBegin",
    		Args:         []string{"dt", "kind_string", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    		StringIDs:    []int{1},
    	},
    	EvSTWEnd: event.Spec{
    		Name:         "STWEnd",
    		Args:         []string{"dt"},
    		StartEv:      EvSTWBegin,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-annotations.test

    GoStart dt=188 g=8 g_seq=1
    EventBatch gen=1 m=167926 time=28113086275999 size=324
    ProcStatus dt=295 p=0 pstatus=1
    GoStatus dt=5 g=1 m=167926 gstatus=2
    ProcsChange dt=405 procs_value=48 stack=1
    STWBegin dt=65 kind_string=21 stack=2
    HeapGoal dt=2 heapgoal_value=4194304
    ProcStatus dt=4 p=1 pstatus=2
    ProcStatus dt=1 p=2 pstatus=2
    ProcStatus dt=1 p=3 pstatus=2
    ProcStatus dt=1 p=4 pstatus=2
    ProcStatus dt=1 p=5 pstatus=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/trace/testdata/go122.test

    HeapAlloc dt=376 heapalloc_value=7628528
    HeapAlloc dt=13 heapalloc_value=7636720
    HeapAlloc dt=7 heapalloc_value=7644912
    HeapAlloc dt=35 heapalloc_value=7653104
    GCBegin dt=23 gc_seq=3 stack=22
    STWBegin dt=73 kind_string=22 stack=28
    GoUnblock dt=258 g=4 g_seq=5 stack=29
    ProcsChange dt=80 procs_value=8 stack=30
    STWEnd dt=37
    GCMarkAssistBegin dt=96 stack=31
    GCMarkAssistEnd dt=4606
    HeapAlloc dt=187 heapalloc_value=7671600
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/tests/go122-annotations-stress.test

    GoDestroy dt=5
    ProcStop dt=42
    EventBatch gen=1 m=1986492 time=2753925244400 size=582
    ProcStatus dt=67 p=1 pstatus=1
    GoStatus dt=4 g=1 m=1986492 gstatus=2
    ProcsChange dt=220 procs_value=8 stack=1
    STWBegin dt=127 kind_string=21 stack=2
    HeapGoal dt=3 heapgoal_value=4194304
    ProcStatus dt=2 p=0 pstatus=2
    ProcStatus dt=2 p=2 pstatus=2
    ProcStatus dt=1 p=3 pstatus=2
    ProcStatus dt=1 p=4 pstatus=2
    ProcStatus dt=1 p=5 pstatus=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  7. src/log/slog/value.go

    	KindDuration
    	KindFloat64
    	KindInt64
    	KindString
    	KindTime
    	KindUint64
    	KindGroup
    	KindLogValuer
    )
    
    var kindStrings = []string{
    	"Any",
    	"Bool",
    	"Duration",
    	"Float64",
    	"Int64",
    	"String",
    	"Time",
    	"Uint64",
    	"Group",
    	"LogValuer",
    }
    
    func (k Kind) String() string {
    	if k >= 0 && int(k) < len(kindStrings) {
    		return kindStrings[k]
    	}
    	return "<unknown slog.Kind>"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/log/slog/value_access_benchmark_test.go

    		bb bool
    		u  uint64
    		d  time.Duration
    		f  float64
    		a  any
    	)
    	b.Run("switch-checked", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			for _, v := range vs {
    				switch v.Kind() {
    				case KindString:
    					s = v.String()
    				case KindInt64:
    					ii = v.Int64()
    				case KindUint64:
    					u = v.Uint64()
    				case KindFloat64:
    					f = v.Float64()
    				case KindBool:
    					bb = v.Bool()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go

    	return r.re().FindStringSubmatchIndex(s)
    }
    
    func (r *Regexp) ReplaceAllString(src, repl string) string {
    	return r.re().ReplaceAllString(src, repl)
    }
    
    func (r *Regexp) FindString(s string) string {
    	return r.re().FindString(s)
    }
    
    func (r *Regexp) FindAllString(s string, n int) []string {
    	return r.re().FindAllString(s, n)
    }
    
    func (r *Regexp) MatchString(s string) bool {
    	return r.re().MatchString(s)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/internal/lazyregexp/lazyre.go

    	return r.re().FindStringSubmatchIndex(s)
    }
    
    func (r *Regexp) ReplaceAllString(src, repl string) string {
    	return r.re().ReplaceAllString(src, repl)
    }
    
    func (r *Regexp) FindString(s string) string {
    	return r.re().FindString(s)
    }
    
    func (r *Regexp) FindAllString(s string, n int) []string {
    	return r.re().FindAllString(s, n)
    }
    
    func (r *Regexp) MatchString(s string) bool {
    	return r.re().MatchString(s)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 23:49:01 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top