mirror of
https://github.com/rancher/plugins.git
synced 2025-07-08 12:45:19 +00:00
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.9.2 to 2.11.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.9.2...v2.11.0) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
// Copyright 2010 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.
|
|
|
|
// Windows environment variables.
|
|
|
|
package windows
|
|
|
|
import (
|
|
"syscall"
|
|
"unsafe"
|
|
)
|
|
|
|
func Getenv(key string) (value string, found bool) {
|
|
return syscall.Getenv(key)
|
|
}
|
|
|
|
func Setenv(key, value string) error {
|
|
return syscall.Setenv(key, value)
|
|
}
|
|
|
|
func Clearenv() {
|
|
syscall.Clearenv()
|
|
}
|
|
|
|
func Environ() []string {
|
|
return syscall.Environ()
|
|
}
|
|
|
|
// Returns a default environment associated with the token, rather than the current
|
|
// process. If inheritExisting is true, then this environment also inherits the
|
|
// environment of the current process.
|
|
func (token Token) Environ(inheritExisting bool) (env []string, err error) {
|
|
var block *uint16
|
|
err = CreateEnvironmentBlock(&block, token, inheritExisting)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer DestroyEnvironmentBlock(block)
|
|
blockp := unsafe.Pointer(block)
|
|
for {
|
|
entry := UTF16PtrToString((*uint16)(blockp))
|
|
if len(entry) == 0 {
|
|
break
|
|
}
|
|
env = append(env, entry)
|
|
blockp = unsafe.Add(blockp, 2*(len(entry)+1))
|
|
}
|
|
return env, nil
|
|
}
|
|
|
|
func Unsetenv(key string) error {
|
|
return syscall.Unsetenv(key)
|
|
}
|