会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
思凡念真
博客园
首页
新随笔
联系
管理
订阅
随笔- 217 文章- 0 评论- 11 阅读-
45万
05 2021 档案
eclipse 导出jar包的一种方式
摘要:导出之前要把项目提前编译build clean 和 maven build 导出的步骤: 1.选中项目,右键选择[Export] 2.选择[java]-[Runnable JAR file] 3.如果Lanch-configuration没有选项,那肯定是项目没有提前编译运行过 4.结果如下: 可能
阅读全文
posted @
2021-05-31 00:23
思凡念真
阅读(621)
评论(0)
推荐(0)
编辑
优化nginx-ingress-controller性能
摘要:1.首先优化ingress-controller 通过 Helm 安装 Nginx Ingress 的默认关联配置映射实例名称为 nginx-ingress-controller,用户可以通过修改资源对象 Deployment/DaemonSet 实例 nginx-ingress-controlle
阅读全文
posted @
2021-05-08 16:00
思凡念真
阅读(1609)
评论(0)
推荐(0)
编辑
NGINX dockerfile与deployment配置
摘要:案例1: FROM centos:7 LABEL maintainer example RUN useradd www -u 1200 -M -s /sbin/nologin RUN mkdir -p /var/log/nginx RUN yum install -y cmake pcre pcre
阅读全文
posted @
2021-05-08 15:01
思凡念真
阅读(391)
评论(0)
推荐(0)
编辑
Docker COPY/ADD 行为逻辑
摘要:为了确定 COPY 和相似的 ADD 命令的行为,做了以下测试: FROM alpine WORKDIR /root/test_docker_proj_1 COPY * ./ WORKDIR /root/test_docker_proj_2 ADD * ./ WORKDIR /root/test_d
阅读全文
posted @
2021-05-08 14:36
思凡念真
阅读(163)
评论(0)
推荐(0)
编辑
Nginx流量镜像
摘要:Nginx在1.13版本的时候就添加了ngx_http_mirror_module模块,用来做流量镜像。它的流量镜像是只复制镜像,发送到配置好的后端,但是后端响应返回到nginx之后,nginx是自动丢弃掉的,这个特性就保证了,镜像后端的不管任何处理都不会影响到正常客户端的请求。但是,复制的镜像请求
阅读全文
posted @
2021-05-08 14:03
思凡念真
阅读(2397)
评论(0)
推荐(0)
编辑
Understanding and Improving Encoder Layer Fusion in Sequence-to-Sequence Learning(在序列到序列学习中理解和改进编码器层的融合)
摘要:存在的问题: Encoder layer fusion (EncoderFusion) is a technique to fuse all the encoder layers (instead of the uppermost layer) for sequence-to-sequence (S
阅读全文
posted @
2021-05-06 21:22
思凡念真
阅读(138)
评论(0)
推荐(0)
编辑
公告
昵称:
思凡念真
园龄:
10年3个月
粉丝:
13
关注:
18
+加关注
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
更多链接
随笔分类
docker(16)
go(2)
java(57)
mysql(3)
netty(12)
nginx(9)
postgresql(4)
python学习(14)
supervisor(2)
vue(1)
读书随笔(11)
技术杂文(61)
领域模型(6)
论文笔记(5)
前端(1)
数据与智能(1)
算法(26)
更多
随笔档案
2025年1月(1)
2024年11月(1)
2024年10月(1)
2024年8月(1)
2024年3月(1)
2024年2月(1)
2024年1月(1)
2023年10月(1)
2023年8月(1)
2023年2月(1)
2022年12月(1)
2022年11月(2)
2022年9月(3)
2022年7月(11)
2022年6月(2)
2022年4月(4)
2022年3月(3)
2022年1月(18)
2021年12月(3)
2021年11月(3)
2021年10月(6)
2021年9月(2)
2021年8月(11)
2021年7月(13)
2021年5月(6)
2021年4月(5)
2021年3月(4)
2021年2月(2)
2021年1月(6)
2020年12月(9)
2020年11月(1)
2020年10月(1)
2017年11月(2)
2017年9月(1)
2017年7月(5)
2017年6月(1)
2017年4月(2)
2017年3月(6)
2017年2月(4)
2017年1月(1)
2016年10月(4)
2016年8月(1)
2016年7月(3)
2016年6月(3)
2016年5月(6)
2016年4月(2)
2016年2月(1)
2016年1月(5)
2015年12月(2)
2015年11月(3)
2015年9月(4)
2015年8月(17)
2015年7月(6)
2015年6月(4)
2015年5月(3)
2014年12月(3)
2014年11月(2)
更多
阅读排行榜
1. linux ip 转发设置 ip_forward(38401)
2. NGINX下配置CACHE-CONTROL(35635)
3. 安装prometheus+grafana监控mysql redis kubernetes等(21380)
4. 访问GitLab的PostgreSQL数据库-(3)(15257)
5. CentOS 下安装 Node npm pm2(14661)
评论排行榜
1. Java热加载(JRebel)与Devtools热部署(3)
2. 算法-25反转单向和双向链表(2)
3. 使用client-go连接k8s集群(2)
4. postgresql的psql常用命令-4(1)
5. postgresql架构基础(转)-(1)(1)
推荐排行榜
1. 微服务设计中的BFF(Backend for Frontend)和网关Gateway(2)
2. postgresql的psql常用命令-4(2)
3. HttpServletRequest 的三个方法 request.getParameter()、request.getInputStream()、request.getReader()(1)
4. Prometheus之kubernetes-sd自动发现(1)
5. 在WINDOWS 10 WSL1 的子系统下完美解决DOCKER的命令问题(1)
最新评论
1. Re:Java热加载(JRebel)与Devtools热部署
没有开源项目做JRebel的事儿吗
--飞出宇宙
2. Re:Java热加载(JRebel)与Devtools热部署
mark
--燕赵雪
3. Re:postgresql的psql常用命令-4
可以~
--规格严格-功夫到家
4. Re:postgresql架构基础(转)-(1)
很好~
--规格严格-功夫到家
5. Re:算法-25反转单向和双向链表
@Joel_Liu head.prev这个指针本身就是空的。当prev取得的head的节点,head已经毫无用处,nead.next=null就是为了去掉引用,好让垃圾回收走,所以无需再设置head....
--思凡念真
点击右上角即可分享