加载中
Kubernetes 源码依赖库中的 wait 库功能介绍

k8s 依赖库中的 wait 库功能 该库提供了很多基于周期性执行的方法,以及约束周期性执行的方法。 周期性执行一个函数 在某些情况下,我们需要周期性地执行一些动作,比如发送心跳请求给maste...

gethostname.c

#ifdef HAVE_CONFIG_H #include <config.h> #endif #include "roken.h" #ifndef HAVE_GETHOSTNAME #ifdef HAVE_SYS_UTSNAME_H #include <sys/utsname.h> #endif /** * Return the local ...

2013/01/01 15:57
180
js quick sort

function partition(array, begin, end, pivot,sort_func) { sort_func=eval(sort_func); var piv=array[pivot]; array.swap(pivot, end-1); var store=begin; var ix; for(ix=begin; ix<end...

2011/06/22 15:28
183
抓狂么

package jemy; class 动物 {   private String 姓名;   private int 年龄;   public String get姓名() {     return 姓名;   }   public void set姓名(String 姓名) {     this.姓名 = 姓名;   }   pub...

2011/04/05 17:15
154
python 封装 xml dom处理

#!/usr/bin/python #coding=utf8 from xml.dom import minidom class ChildIndexOutofBoundsException(Exception):   pass class DOMXmlUtil:   def __init__(self):     pass   def read...

2011/03/07 11:25
1.5K

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部