mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-01-20 16:42:51 +08:00
ec723b2112
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. sample-controller: add example CRD controller **What this PR does / why we need it**: Adds a sample-controller example repository fixes #52752 **Special notes for your reviewer**: This is currently based on the sttts:sttts-codegen-scripts branch and should not be merged until that is (ref https://github.com/kubernetes/kubernetes/pull/52186) **Release note**: ``` Add sample-controller repository ``` /cc @sttts @nikhita @colemickens Kubernetes-commit: 9a7800f7d2efb88b397674672ac56f898826cf7c
19 lines
884 B
Go
19 lines
884 B
Go
// Package jsoniter implements encoding and decoding of JSON as defined in
|
|
// RFC 4627 and provides interfaces with identical syntax of standard lib encoding/json.
|
|
// Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter
|
|
// and variable type declarations (if any).
|
|
// jsoniter interfaces gives 100% compatibility with code using standard lib.
|
|
//
|
|
// "JSON and Go"
|
|
// (https://golang.org/doc/articles/json_and_go.html)
|
|
// gives a description of how Marshal/Unmarshal operate
|
|
// between arbitrary or predefined json objects and bytes,
|
|
// and it applies to jsoniter.Marshal/Unmarshal as well.
|
|
//
|
|
// Besides, jsoniter.Iterator provides a different set of interfaces
|
|
// iterating given bytes/string/reader
|
|
// and yielding parsed elements one by one.
|
|
// This set of interfaces reads input as required and gives
|
|
// better performance.
|
|
package jsoniter
|