mirror of
https://github.com/rancher/plugins.git
synced 2025-07-08 12:45:19 +00:00
Bumps the golang group with 3 updates: [github.com/Microsoft/hcsshim](https://github.com/Microsoft/hcsshim), [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) and [github.com/onsi/gomega](https://github.com/onsi/gomega). Updates `github.com/Microsoft/hcsshim` from 0.11.1 to 0.11.2 - [Release notes](https://github.com/Microsoft/hcsshim/releases) - [Commits](https://github.com/Microsoft/hcsshim/compare/v0.11.1...v0.11.2) Updates `github.com/onsi/ginkgo/v2` from 2.12.0 to 2.13.0 - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.12.0...v2.13.0) Updates `github.com/onsi/gomega` from 1.28.0 to 1.29.0 - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.28.0...v1.29.0) --- updated-dependencies: - dependency-name: github.com/Microsoft/hcsshim dependency-type: direct:production update-type: version-update:semver-patch dependency-group: golang - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
873 B
Go
35 lines
873 B
Go
// Copyright 2018, The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package value
|
|
|
|
import (
|
|
"reflect"
|
|
"unsafe"
|
|
)
|
|
|
|
// Pointer is an opaque typed pointer and is guaranteed to be comparable.
|
|
type Pointer struct {
|
|
p unsafe.Pointer
|
|
t reflect.Type
|
|
}
|
|
|
|
// PointerOf returns a Pointer from v, which must be a
|
|
// reflect.Ptr, reflect.Slice, or reflect.Map.
|
|
func PointerOf(v reflect.Value) Pointer {
|
|
// The proper representation of a pointer is unsafe.Pointer,
|
|
// which is necessary if the GC ever uses a moving collector.
|
|
return Pointer{unsafe.Pointer(v.Pointer()), v.Type()}
|
|
}
|
|
|
|
// IsNil reports whether the pointer is nil.
|
|
func (p Pointer) IsNil() bool {
|
|
return p.p == nil
|
|
}
|
|
|
|
// Uintptr returns the pointer as a uintptr.
|
|
func (p Pointer) Uintptr() uintptr {
|
|
return uintptr(p.p)
|
|
}
|