EvoSuite, Automatic Test Suite Generation for Java
实践Harbor
Harbor is an an open source trusted cloud native registry project that stores, signs, and scans content. Harbor extends the open source Docker Distribution by adding the functionalities usually required by users such as security, identity and management. Having a registry closer to the build and run environment can improve the image transfer efficiency. Harbor supports replication of images between registries, and also offers advanced security features such as user management, access control and activity auditing.
实践设计模式之规约模式(Specification)
实践设计模式之适配器模式(Adapter)
将一个类的接口,转换成客户期望的另一个接口。适配器让原本接口不兼容的类可以合作无间。
实践设计模式之迭代器模式(Iterator)
提供一种方法顺序访问一个聚合对象中的各个元素,而又不暴露其内部的表示
实践设计模式之责任链模式(Chain of Responsibility)
实践设计模式之访问者模式(Visitor)
实践设计模式之解释器模式(Interpreter)
实践设计模式之观察者模式(Observer)
定义了对象之间的一对多依赖,这样一来,当一个对象改变状态时,它的所有依赖者都会收到通知并自动更新
实践设计模式之装饰者模式(Decorator)
动态地将责任附加到对象上。若要扩展功能,装饰者提供了比继承更有弹性的替代方案。