主页

OVN实验一:使用OVN配置交换机

参考 install ovn export RPM_OVS=http://download-node-02.eng.bos.redhat.com/brewroot/packages/openvswitch2.13/2.13.0/112.el8fdp/x86_64/openvswitch2.13-2.13.0-112.el8fdp.x86_64.rpm export RPM_OVN_COMMON=http://download-node-02.eng.bos.redhat.com/brewroot/packages/ovn2.13/20.12.0/121.el8fdp/x86_64/ovn2.13-20.12.0-121.el8fdp.x86_64.rpm export RPM_SEL...

阅读更多

控制python函数运行时间

yield #!/usr/bin/python # -*- coding: UTF-8 -*- def fab(max): n, a, b = 0, 0, 1 while n < max: yield b # 使用 yield # print b a, b = b, a + b n = n + 1 for n in fab(5): print n 简单地讲,yield 的作用就是把一个函数变成一个 generator,带有 yield 的函数不再是一个普通函数,Python 解释器会将其视为一个 generator, 调用 fab(5) 不会执行 fab 函数,...

阅读更多

PHP

main.php – style JQuery AJAX <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <link rel="icon" href="cat3.png" /> <link rel="stylesheet" type="text/css" href="./styles.css"> <title>Job Manager</title> <!-- JQuery --> <link rel="stylesheet" href="//apps.bdimg.com/libs/jqueryui/1.1...

阅读更多