mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-08 16:06:47 +00:00
* Updates containerd to v1.7.0 and new binary for 32-bit Arm OSes. * Updates Go dependencies - openfaas and external Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
17 lines
411 B
Go
Generated
17 lines
411 B
Go
Generated
// Copyright 2017, 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.
|
|
|
|
//go:build purego
|
|
// +build purego
|
|
|
|
package cmp
|
|
|
|
import "reflect"
|
|
|
|
const supportExporters = false
|
|
|
|
func retrieveUnexportedField(reflect.Value, reflect.StructField, bool) reflect.Value {
|
|
panic("no support for forcibly accessing unexported fields")
|
|
}
|