remove repetitive words (#20110)

Signed-off-by: carrychair <linghuchong404@gmail.com>
This commit is contained in:
carrychair
2024-03-11 16:52:08 +08:00
committed by GitHub
parent 286dce7a2a
commit 5f5b34db0e
14 changed files with 17 additions and 17 deletions

View File

@@ -337,7 +337,7 @@ func (m *ReserveRequest) GetDeviceIds() []string {
}
// ReserveResponse informs Nomad how to expose the requested devices
// to the the task.
// to the task.
type ReserveResponse struct {
// container_res contains information on how to mount the device
// into a task isolated using container technologies (where the

View File

@@ -92,7 +92,7 @@ message ReserveRequest {
}
// ReserveResponse informs Nomad how to expose the requested devices
// to the the task.
// to the task.
message ReserveResponse {
// container_res contains information on how to mount the device
// into a task isolated using container technologies (where the

View File

@@ -17,7 +17,7 @@ import (
var _ plugin.GRPCPlugin = &PluginDriver{}
// PluginDriver wraps a DriverPlugin and implements go-plugins GRPCPlugin
// interface to expose the the interface over gRPC
// interface to expose the interface over gRPC
type PluginDriver struct {
plugin.NetRPCUnsupportedPlugin
impl DriverPlugin