File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 with :
1414 github_token : ${{ github.token }}
1515 source_ref : ${{ github.ref }}
16- target_branch : ' master '
16+ target_branch : ' main '
1717 commit_message_template : ' [Automated] Merged {source_ref} into {target_branch}'
Original file line number Diff line number Diff line change 44 pull_request :
55 push :
66 branches :
7- - master
7+ - main
88
99jobs :
1010 prettier :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Sync
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [ main ]
66
77jobs :
88 build :
2828 # 注意在 Settings->Secrets 配置 GITEE_PASSWORD
2929 gitee-password : ${{ secrets.GITEE_PASSWORD }}
3030 # 注意替换为你的 Gitee 仓库
31- gitee-repo : doocs/source-code-hunter
31+ gitee-repo : doocs/source-code-hunter
32+ branch : main
Original file line number Diff line number Diff line change 11# 互联网公司常用框架源码赏析
22
3- [ ![ license] ( https://badgen.net/github/license/doocs/source-code-hunter?color=green )] ( https://github.com/doocs/source-code-hunter/blob/master /LICENSE )
3+ [ ![ license] ( https://badgen.net/github/license/doocs/source-code-hunter?color=green )] ( https://github.com/doocs/source-code-hunter/blob/main /LICENSE )
44[ ![ stars] ( https://badgen.net/github/stars/doocs/source-code-hunter )] ( https://github.com/doocs/source-code-hunter/stargazers )
55[ ![ contributors] ( https://badgen.net/github/contributors/doocs/source-code-hunter )] ( https://github.com/doocs/source-code-hunter/graphs/contributors )
66[ ![ help-wanted] ( https://badgen.net/github/label-issues/doocs/source-code-hunter/help%20wanted/open )] ( https://github.com/doocs/source-code-hunter/labels/help%20wanted )
Original file line number Diff line number Diff line change 2121 以上几个 PoolChunkList,由符合各个内存利用率的 poolChunk 组成,这几个 PoolChunkList 之间又互相首尾连接组成队列,方便 PoolChunk 在各个队列中根据自己当前的利用率进行转移到对应的位置上。
2222 最后,当申请的内存大于一个 poolChunk 大小的时候将会直接申请一段非池化的内存返回,并不会占用内存池中的内存空间。
2323
24- 最后,到了从 poolChunk 中申请内存的场景,这一部分在[ 该文] ( https://github.com/doocs/source-code-hunter/blob/master /docs/Netty/Netty技术细节源码分析/内存池之PoolChunk设计与实现.md ) 中已经详细说明,这部分也是内存池中获取内存的最后一步。
24+ 最后,到了从 poolChunk 中申请内存的场景,这一部分在[ 该文] ( https://github.com/doocs/source-code-hunter/blob/main /docs/Netty/Netty技术细节源码分析/内存池之PoolChunk设计与实现.md ) 中已经详细说明,这部分也是内存池中获取内存的最后一步。
You can’t perform that action at this time.
0 commit comments