上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 66 下一页
摘要: 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 阅读(1237) 评论(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 阅读(1330) 评论(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 阅读(495) 评论(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 阅读(295) 评论(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 阅读(51) 评论(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 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://www.cnblogs.com/stulzq/p/14085008.html 1.关系运算符# != 与等号共同组成关系运算符,检查两个操作数的值是否相等,如:A!=B 2.逻辑运算符# ! 称为逻辑非运算符。用来逆转操作数的逻辑状态。如果条件为真则逻辑非运算符将使其为假。 阅读全文
posted @ 2023-04-13 21:21 SpringCore 阅读(259) 评论(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 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 1.Swagger 多分组 在很多大型系统中,为了方便对接口进行归类,往往使用了 Swagger 多分组功能,这样会使系统的接口散落在多个 swagger.json 中。 将SpecificationDocumentSettings属性的EnableAllGroups设置为true。 启用之后在 S 阅读全文
posted @ 2023-04-02 14:10 SpringCore 阅读(408) 评论(0) 推荐(1) 编辑
摘要: 1.表T(a,b,c,d),要根据字段c排序后取第21—30条记录显示,请给出sql select * from T order by c [desc] limit 20,10 2.表T(a,b,c,d)和表T1(a1,b1,c1,d1),表T中a字段是T1中的a1的外键,请用T1表中的c1,d1更 阅读全文
posted @ 2023-03-27 16:04 SpringCore 阅读(115) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 66 下一页