130|:/ # modetest -h
usage: modetest [-acDdefMPpsCvrw]Query options:-c list connectors-e list encoders-f list framebuffers-p list CRTCs and planes (pipes)Test options:-P <plane_id>@<crtc_id>:<w>x<h>[+<x>+<y>][*<scale>][@<format>] set a plane-s <connector_id>[,<connector_id>][@<crtc_id>]:[#<mode index>]<mode>[-<vrefresh>][@<format>] set a mode-C test hw cursor-v test vsynced page flipping-r set the preferred mode for all connectors-w <obj_id>:<prop_name>:<value> set property-a use atomic API-F pattern1,pattern2 specify fill patternsGeneric options:-d drop master after mode set-M module use the given driver-D device use the given deviceDefault is to dump all info.
2 分3大类
2.1 查询
Query options:-c list connectors-e list encoders-f list framebuffers-p list CRTCs and planes (pipes)
2.2 测试
Test options:-P <plane_id>@<crtc_id>:<w>x<h>[+<x>+<y>][*<scale>][@<format>] set a plane-s <connector_id>[,<connector_id>][@<crtc_id>]:[#<mode index>]<mode>[-<vrefresh>][@<format>] set a mode-C test hw cursor-v test vsynced page flipping-r set the preferred mode for all connectors-w <obj_id>:<prop_name>:<value> set property-a use atomic API-F pattern1,pattern2 specify fill patterns
2.3 通用设置
Generic options:-d drop master after mode set-M module use the given driver-D device use the given device
https://aosabook.org/en/500L/a-web-crawler-with-asyncio-coroutines.html ——A. Jesse Jiryu Davis and Guido van Rossum
介绍
网络程序消耗的不是计算资源,而是打开许多缓慢的连接,解决此问题的现代方法是异步IO。 本章介绍一个简单的网络爬虫&a…