Athenakia
Athenakia
This problem does not exist on version 22.14.13 or previous.
# Exactly the same error here! no matter use libjli.dylib or libjvm.dylib ## latest release Sourcetrail on macOS Catalina 10.15.3(19D76) ### when fill path of libjli.dylib ``` 03:52:30 | INFO:...
Sourcetrail 2019.4.102 seems to be able to locate Java, but index 0 file after add an android studio gradle project. (´-`)
> @daidai21 typically, creating a resty client once and firing N no. of request using that client is recommended. In the first example, you're creating a client every time, which...
> > @daidai21 typically, creating a resty client once and firing N no. of request using that client is recommended. In the first example, you're creating a client every time,...
> > > @daidai21 typically, creating a resty client once and firing N no. of request using that client is recommended. In the first example, you're creating a client every...
ChatGPT suggests setting DisableKeepAlives in the transport: ``` client.SetTransport(&http.Transport{ DisableKeepAlives: true, }) ``` It works well.
The version I used is github.com/pires/[email protected]. Is this problem solved now? I have upgraded to the new version of dependency, but this problem is difficult to repeat, so it is...
2022-blake3-aes-*加密方式的节点密码可能为`YWJjZDg4ODg4ODg4ODg4OA==`形式,也可能是`YWJjZDg4ODg4ODg4ODg4OA==:YWJjZDg4ODg4ODg4ODg4OA==`形式(中间有冒号分隔,前半部分是节点密码Base64,后半部分是用户密码Base64) 导致问题的代码部分: https://github.com/hq450/fancyss/blob/9101cc4299f2f5bbaee3cfdf559e8fd536f1aa57/fancyss/scripts/ss_online_update.sh#L661 其中的`password=$(echo "${decrypt_info}" | sed 's/@/|/g;s/:/|/g;s/?/|/g;s/#/|/g' | awk -F'|' '{print $2}')`,可以修改成: ```shell password=$(echo "${decrypt_info}" | awk -F'@' '{print substr($1, index($1, ":")+1)}') ``` 表示截取从第一个冒号到@符号之间的内容。