mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-26 05:49:58 +00:00
76ecce5e8f
Bumps [github.com/NVIDIA/go-nvlib](https://github.com/NVIDIA/go-nvlib) from 0.0.0-20231115170030-b21432a353e1 to 0.2.0. - [Release notes](https://github.com/NVIDIA/go-nvlib/releases) - [Commits](https://github.com/NVIDIA/go-nvlib/commits/v0.2.0) --- updated-dependencies: - dependency-name: github.com/NVIDIA/go-nvlib dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
839 B
Markdown
22 lines
839 B
Markdown
# uuid
|
|
The uuid package generates and inspects UUIDs based on
|
|
[RFC 4122](https://datatracker.ietf.org/doc/html/rfc4122)
|
|
and DCE 1.1: Authentication and Security Services.
|
|
|
|
This package is based on the github.com/pborman/uuid package (previously named
|
|
code.google.com/p/go-uuid). It differs from these earlier packages in that
|
|
a UUID is a 16 byte array rather than a byte slice. One loss due to this
|
|
change is the ability to represent an invalid UUID (vs a NIL UUID).
|
|
|
|
###### Install
|
|
```sh
|
|
go get github.com/google/uuid
|
|
```
|
|
|
|
###### Documentation
|
|
[![Go Reference](https://pkg.go.dev/badge/github.com/google/uuid.svg)](https://pkg.go.dev/github.com/google/uuid)
|
|
|
|
Full `go doc` style documentation for the package can be viewed online without
|
|
installing this package by using the GoDoc site here:
|
|
http://pkg.go.dev/github.com/google/uuid
|