Fix code comments function names (#2927)
Signed-off-by: eveneast <qcqs@foxmail.com>
This commit is contained in:
+1
-1
@@ -42,7 +42,7 @@ func (ck CacheKeyURG) String() string {
|
|||||||
return fmt.Sprintf("%v_%v_%v", ck.UID, ck.ResourceVersion, ck.Generation)
|
return fmt.Sprintf("%v_%v_%v", ck.UID, ck.ResourceVersion, ck.Generation)
|
||||||
}
|
}
|
||||||
|
|
||||||
// CacheKeyForUID create a key that uniquely identifies the
|
// CacheKeyUIDFromMeta create a key that uniquely identifies the
|
||||||
// of the object. Since resourceVersion changes on every update and
|
// of the object. Since resourceVersion changes on every update and
|
||||||
// UIDs are unique, we don't use resource version here
|
// UIDs are unique, we don't use resource version here
|
||||||
func CacheKeyUIDFromMeta(metadata *metav1.ObjectMeta) types.UID {
|
func CacheKeyUIDFromMeta(metadata *metav1.ObjectMeta) types.UID {
|
||||||
|
|||||||
@@ -355,7 +355,7 @@ func (c *PoolCache) MarkFuncDeleted(function crd.CacheKeyURG) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetValue returns a function service with status in Active else return error
|
// GetSvcValue returns a function service with status in Active else return error
|
||||||
func (c *PoolCache) GetSvcValue(ctx context.Context, function crd.CacheKeyURG, requestsPerPod int, concurrency int) (*FuncSvc, error) {
|
func (c *PoolCache) GetSvcValue(ctx context.Context, function crd.CacheKeyURG, requestsPerPod int, concurrency int) (*FuncSvc, error) {
|
||||||
respChannel := make(chan *response)
|
respChannel := make(chan *response)
|
||||||
c.requestChannel <- &request{
|
c.requestChannel <- &request{
|
||||||
@@ -390,7 +390,7 @@ func (c *PoolCache) ListAvailableValue() []*FuncSvc {
|
|||||||
return resp.allValues
|
return resp.allValues
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetValue marks the value at key [function][address] as active(begin used)
|
// SetSvcValue marks the value at key [function][address] as active(begin used)
|
||||||
func (c *PoolCache) SetSvcValue(ctx context.Context, function crd.CacheKeyURG, address string, value *FuncSvc, cpuLimit resource.Quantity, requestsPerPod, svcsRetain int) {
|
func (c *PoolCache) SetSvcValue(ctx context.Context, function crd.CacheKeyURG, address string, value *FuncSvc, cpuLimit resource.Quantity, requestsPerPod, svcsRetain int) {
|
||||||
respChannel := make(chan *response)
|
respChannel := make(chan *response)
|
||||||
c.requestChannel <- &request{
|
c.requestChannel <- &request{
|
||||||
|
|||||||
@@ -334,7 +334,7 @@ func (opts *CreateSubCommand) complete(input cli.Input) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// generatePackgeName => will return package name by appending id in function name and will make sure that package name will never be more than length of 63 characters.
|
// generatePackageName => will return package name by appending id in function name and will make sure that package name will never be more than length of 63 characters.
|
||||||
func generatePackageName(fnName string, id string) string {
|
func generatePackageName(fnName string, id string) string {
|
||||||
var (
|
var (
|
||||||
lenFnName int = len(fnName)
|
lenFnName int = len(fnName)
|
||||||
|
|||||||
Reference in New Issue
Block a user