mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-03 19:19:45 +00:00
* Fix storing bootstrap data with empty token string (#3422) * Fix storing bootstrap data with empty token string Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * delete node password secret after restoration fixes to bootstrap key vendor update Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * fix comment Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * fix typo Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * more fixes Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * fixes Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * fixes Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * typos Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Removing dynamic listener file after restoration Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * go mod tidy Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * go mod vendor Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * fix a runtime core panic Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * update kine Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * revert the helm controller update Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * Fix calling delete in kine Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com>
31 lines
742 B
Go
31 lines
742 B
Go
// Copyright 2016 The Snappy-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.
|
|
|
|
// +build !appengine
|
|
// +build gc
|
|
// +build !noasm
|
|
// +build amd64 arm64
|
|
|
|
package snappy
|
|
|
|
// emitLiteral has the same semantics as in encode_other.go.
|
|
//
|
|
//go:noescape
|
|
func emitLiteral(dst, lit []byte) int
|
|
|
|
// emitCopy has the same semantics as in encode_other.go.
|
|
//
|
|
//go:noescape
|
|
func emitCopy(dst []byte, offset, length int) int
|
|
|
|
// extendMatch has the same semantics as in encode_other.go.
|
|
//
|
|
//go:noescape
|
|
func extendMatch(src []byte, i, j int) int
|
|
|
|
// encodeBlock has the same semantics as in encode_other.go.
|
|
//
|
|
//go:noescape
|
|
func encodeBlock(dst, src []byte) (d int)
|