张翼

Results 13 issues of 张翼

```dart var cookieJar = CookieJar(); webVPN.interceptors.add(CookieManager(cookieJar)); ``` 在一个正常请求中得到的response中所看到的set-cookie`.then((response) => print(response.headers["set-cookie"]))` 和通过 interceptor中对onResponse处理时得到的额set-cookie不一样,缺少服务器发来的session id,我看这个问题似乎存在很久了,也有一大批人提到这个问题,还请开发者说明下该如何处理 ```dart @override Future onResponse(Response response,var handler) async { if(response.headers['set-cookie']!=null){ session = response.headers['set-cookie']![0].toString().split(";")[0]; } ```

因为单位情况较为特殊,我采用了一台内网机器挂载上nfs的存储,挂载点为/a,然后用smb将/a分享出来,假设为//ip/a,之后使用部署seafile的服务器来将//ip/a 替换seafile-data 下的storage来实现将seafile的存储放在nfs上,但部署失败,log提示:Invalid cross-device link,之后又分别尝试了挂载httptemp和tmpfiles,Invalid cross-device link这一提示消失,但提示权限问题: 2021-07-17 22:57:26 repo-mgr.c(7436): Temp file /home/xxx/seafile/seafile-data/httptemp/cluster-shared/VMP1-patch-v2.1.RmdEIFT60 doesn't exist, remove reocrd from db. 2021-07-17 22:57:27 ../common/fs-mgr.c(650): Failed to open /xxx/minecraft/seafile/seafile-data/httptemp/cluster-shared/VMP1-patch-v2.1.RmdZLCM60: Permission denied 请问是我部署的问题,还是因为嵌套导致的? seafile团队会针对这一点进行修复吗?...

加入1400+的文献后,更新IF出现严重的性能问题

I want to code other functionality with pyCraft and add them under minecraft/networking/packets. But the stucture of class packet may be too complex to code for coder which hasn't enough...

PlayerPositionPacket and VehicleMovePacket

enhancement
packet_support

I checked the wiki.vg protocal and can't figure out the process of sleeping. Could someone help?

### New Issue Checklist - [x] I have searched for a similar issue in the [project](https://github.com/flutterchina/dio/issues) and found none ### Issue Info ### Issue Description and Steps The python code...

nginx 配置如下 ``` root /var/www/html; server_name _; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php-fpm.sock; } ``` 访问 ip/lsky/public/ 会跳转到 ip/lsky/public/install,但是提示404,测试 ip/test.php...

There is a error while add parameter `--ibf_threshold 0.5` in command line ```bash Traceback (most recent call last): File "/usr/local/bin/abagen", line 8, in sys.exit(main()) File "/usr/local/lib/python3.10/dist-packages/abagen/cli/run.py", line 365, in main...