Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for goLeak (0.13 sec)

  1. staging/src/k8s.io/cli-runtime/go.sum

    go.starlark.net v0.0.0-20230525235612-a134d8f9ddca/go.mod h1:jxU+3+j+71eXOW14274+SmmuW82qJzl6iZSeqEtTGds=
    go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
    go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
    golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  2. go.mod

    	go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0
    	go.opentelemetry.io/otel/sdk v1.20.0
    	go.opentelemetry.io/otel/trace v1.20.0
    	go.opentelemetry.io/proto/otlp v1.0.0
    	go.uber.org/goleak v1.3.0
    	go.uber.org/mock v0.4.0
    	go.uber.org/zap v1.26.0
    	golang.org/x/crypto v0.23.0
    	golang.org/x/net v0.25.0
    	golang.org/x/oauth2 v0.20.0
    	golang.org/x/sync v0.7.0
    	golang.org/x/sys v0.20.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. test/escape2.go

    	v := 0
    	b.ii = &v
    	return b.i
    }
    
    func goLeak(b *Bar) { // ERROR "leaking param: b$"
    	go b.NoLeak()
    }
    
    type Bar2 struct {
    	i  [12]int
    	ii []int
    }
    
    func NewBar2() *Bar2 {
    	return &Bar2{[12]int{42}, nil} // ERROR "&Bar2{...} escapes to heap$"
    }
    
    func (b *Bar2) NoLeak() int { // ERROR "b does not escape$"
    	return b.i[0]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  4. test/escape2n.go

    	v := 0
    	b.ii = &v
    	return b.i
    }
    
    func goLeak(b *Bar) { // ERROR "leaking param: b$"
    	go b.NoLeak()
    }
    
    type Bar2 struct {
    	i  [12]int
    	ii []int
    }
    
    func NewBar2() *Bar2 {
    	return &Bar2{[12]int{42}, nil} // ERROR "&Bar2{...} escapes to heap$"
    }
    
    func (b *Bar2) NoLeak() int { // ERROR "b does not escape$"
    	return b.i[0]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. docs/az/docs/index.md

    ---
    
    "_Düzünü desəm, sizin qurduğunuz şey həqiqətən möhkəm və peşəkar görünür. Bir çox cəhətdən **Hug**-un olmasını istədiyim kimdir - kiminsə belə bir şey qurduğunu görmək həqiqətən ruhlandırıcıdır._"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top