上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 68 下一页
摘要: 官方介绍地址:https://github.com/swagger-api/swagger-codegen 1.安装JDK【略】 2.下载jar包 wget https://repo1.maven.org/maven2/io/swagger/codegen/v3/swagger-codegen-cl 阅读全文
posted @ 2023-05-06 16:04 SpringCore 阅读(747) 评论(0) 推荐(0)
摘要: Gitea在1.19版本正式支持了Gitea Actions 而运行Gitea Actions的前提是注册一个跑步者(目前,act runners是唯一的选择)。 再次之前,先开启Gitea对Actions的支持。 修改配置文件,确保存在如下配置【我的配置文件在 /data/gitea/conf/a 阅读全文
posted @ 2023-05-05 14:38 SpringCore 阅读(1346) 评论(0) 推荐(0)
摘要: 转自https://www.cnblogs.com/tonyc/p/10432871.html 设置方法如下: vi /etc/pam.d/gdm-autologin 找到下面这一行 auth required pam_succeed_if.so user != root quiet_success 阅读全文
posted @ 2023-05-02 15:25 SpringCore 阅读(478) 评论(0) 推荐(0)
摘要: 1.将用户和Shell环境一起切换成root身份 su - root 2.编辑sshd_config文件 vi /etc/ssh/sshd_config 3.修改配置 默认的Authentication区块 # Authentication: #LoginGraceTime 2m #PermitRo 阅读全文
posted @ 2023-05-02 15:11 SpringCore 阅读(2104) 评论(0) 推荐(0)
摘要: ##### 1.更新源 ```shell sudo apt update && sudo apt upgrade -y ``` ##### 2.安装SSH(OpenSSH) ```shell sudo apt install openssh-server -y ``` ##### 3.使用syste 阅读全文
posted @ 2023-05-02 14:12 SpringCore 阅读(1660) 评论(0) 推荐(0)
摘要: ## 1.Gitlab-CE 官方介绍地址:https://docs.gitlab.com/ee/install/docker.html ```docker docker run -d \ --hostname 192.168.172.128 \ --privileged=true \ -e GIT 阅读全文
posted @ 2023-04-28 11:13 SpringCore 阅读(653) 评论(0) 推荐(0)
摘要: 原文地址:https://my.oschina.net/sesametech/blog/1563905 GCHandle hander = GCHandle.Alloc(obj); var pin = GCHandle.ToIntPtr(hander); Debug.Print($"Device : 阅读全文
posted @ 2023-04-18 09:20 SpringCore 阅读(394) 评论(0) 推荐(0)
摘要: 1.实现原理 https://www.cnblogs.com/eventhorizon/p/12240767.html 2.丢失上下文相关解答 https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/blob/master/AsyncGu 阅读全文
posted @ 2023-04-13 21:25 SpringCore 阅读(85) 评论(0) 推荐(0)
摘要: https://www.dongchuanmin.com/net/3428.html https://www.cnblogs.com/wl-blog/p/14870998.html https://www.cnblogs.com/chenxinblogs/p/16721091.html https: 阅读全文
posted @ 2023-04-13 21:22 SpringCore 阅读(24) 评论(0) 推荐(0)
摘要: 原文地址:https://www.cnblogs.com/stulzq/p/14085008.html 1.关系运算符# != 与等号共同组成关系运算符,检查两个操作数的值是否相等,如:A!=B 2.逻辑运算符# ! 称为逻辑非运算符。用来逆转操作数的逻辑状态。如果条件为真则逻辑非运算符将使其为假。 阅读全文
posted @ 2023-04-13 21:21 SpringCore 阅读(314) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 68 下一页