junbaibai0719

Results 7 comments of junbaibai0719

> I've just experienced the same issue via [s3fs](https://github.com/fsspec/s3fs/), downloading a few hundred files from S3. > > Python: 3.7.12 aiohttp: 3.8.1 yarl: 1.7.2 multidict: 5.2.0 > > ```python >...

I got `Type Error:arg 5 (closure) expect cell, found compiled_cell`. `six.get_function_closure` return a compiled_cell after compiled,but js2py need a cell, I think the error needs to be solved by the...

I edit the code **build.py** ![image](https://user-images.githubusercontent.com/44611975/148929736-909ae52b-3f2e-4d6d-b18e-41be12e3cafa.png) **picohttpparser.c** ![image](https://user-images.githubusercontent.com/44611975/148929801-699dd4a5-b101-4742-b1ab-c37fa2742bfc.png) ![image](https://user-images.githubusercontent.com/44611975/148929889-f36b2ceb-c487-4f2f-af25-5ebdf879a772.png) **cpu_features.c** ![image](https://user-images.githubusercontent.com/44611975/148929977-87c175ec-499d-4f5a-8d22-d06507e13ebd.png) then,compile it in raspberry ![image](https://user-images.githubusercontent.com/44611975/148930242-cc9dc238-0aa2-439c-b173-7ce0ef2266dc.png) ![image](https://user-images.githubusercontent.com/44611975/148930299-18fa95ce-eb7f-4625-bdaf-9d6021eddb0e.png) and run it ![image](https://user-images.githubusercontent.com/44611975/148930363-b9f005ee-466d-4b21-aee6-6cb183c9d990.png) but ![image](https://user-images.githubusercontent.com/44611975/148930471-f16a767c-8707-4e38-b658-06c36193cfb2.png)

Today, I finally know why I can't compile in arm. Because I didn't use `-fsigned-char` and simde didn't have `_ mm_ cmpestri`.

`text` expect a string not byte. So `Request.Response` can't return. u can use `r.text` instead of `r.body`.

> ``` > pi@raspberrypi ➜ ~ wrk -t 1 -c 1 -d 30s http://localhost:9091/ > PANIC: unprotected error in call to Lua API (attempt to index a nil value) >...

> 就是如图所示,当 componentsTree 为多个元素时,各个 tree 中所使用到的组件均被加入到 componentsMap 中,即共用的关系~ > > 在出码引擎针对 Page / Component 类型的容器时,会根据当前容器里 componentName 收集使用到的组件,最终反应在 ir.deps 中~ > > 参照代码 SchemaParser.ts 你们官方文档纯纯的误导人,我照着官方文档组织了schema,然后router根本没变化,看了源代码才知道是看page里的meat生成的。真的坑 ![image](https://github.com/user-attachments/assets/64efb183-0549-4105-9ccc-e787c2183f30)