上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 65 下一页
摘要: 转自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 阅读(166) 评论(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 阅读(629) 评论(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 阅读(975) 评论(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 阅读(444) 评论(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 阅读(247) 评论(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 阅读(35) 评论(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 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://www.cnblogs.com/stulzq/p/14085008.html 1.关系运算符# != 与等号共同组成关系运算符,检查两个操作数的值是否相等,如:A!=B 2.逻辑运算符# ! 称为逻辑非运算符。用来逆转操作数的逻辑状态。如果条件为真则逻辑非运算符将使其为假。 阅读全文
posted @ 2023-04-13 21:21 SpringCore 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 官方介绍地址:https://docs.gitea.io/zh-cn/install-with-docker/ 1.docker compose 文件 注意:在docker compose文件中同时声明gitea及mysql,若mysql中存储了其他的数据库,当使用docker compose移除命 阅读全文
posted @ 2023-04-08 19:51 SpringCore 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 1.Swagger 多分组 在很多大型系统中,为了方便对接口进行归类,往往使用了 Swagger 多分组功能,这样会使系统的接口散落在多个 swagger.json 中。 将SpecificationDocumentSettings属性的EnableAllGroups设置为true。 启用之后在 S 阅读全文
posted @ 2023-04-02 14:10 SpringCore 阅读(346) 评论(0) 推荐(1) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 65 下一页