摘要: 合成器入门教程目录 内容在b站音乐轨柴 第二集 常用合成器及其特色 硬件合成器 特点 实体旋钮和推子:提供直观的操作体验,便于实时调整音色.例如,通过旋转振荡器的频率旋钮,可以改变音色的基频[5];通过推动滤波器的截止频率推子,可以改变音色的亮度[6]. 直观的操作感:用户可以直观地感受到音色的变化 阅读全文
posted @ 2025-01-04 14:56 大哥超帅 阅读(788) 评论(0) 推荐(0)
摘要: 反射操作 ReflectionTestUtils ReflectionUtils 阅读全文
posted @ 2024-07-15 00:18 大哥超帅 阅读(6) 评论(0) 推荐(0)
摘要: 直接上 import cn.hutool.core.date.DateTime; import cn.hutool.core.util.RandomUtil; import cn.hutool.core.util.ReflectUtil; import com.google.common.colle 阅读全文
posted @ 2024-04-16 19:45 大哥超帅 阅读(46) 评论(0) 推荐(0)
摘要: 1. 首先打开ide选择帮助 点击查找 2. 选择相应功能 输入choose,此时会提示选择运行时 3. 选择运行时 此时选择非idea自带的runtime,即非JetBrains标记的jdk 4. 查看结果 重启后有极大概率丢失菜单选项,恢复的方法是重新选择运行时 官方文档 阅读全文
posted @ 2024-01-08 16:31 大哥超帅 阅读(10) 评论(0) 推荐(0)
摘要: 具体api格式请参照你当前使用的github api 版本 1. 准备组装必要参数 1.基本参数 在header中需要包含验证token 2. 功能参数 #{baseApi}/#{org}/#{repo}/功能参数?since=#{date}&until=#{date}&per_page=#{num 阅读全文
posted @ 2023-11-27 14:18 大哥超帅 阅读(104) 评论(0) 推荐(0)
摘要: ```java //这行根据需求发挥 ExecutorService cachedPool = new ThreadPoolExecutor(6, 1000, 60L, TimeUnit.SECONDS, new SynchronousQueue(true)); ConcurrentLinkedQu 阅读全文
posted @ 2023-09-06 16:57 大哥超帅 阅读(22) 评论(0) 推荐(0)
摘要: > 以下包含AI创作 - ExecutorService用法 ```java try (var executor = Executors.newVirtualThreadPerTaskExecutor()) { var future1 = executor.submit(() -> fetchURL 阅读全文
posted @ 2023-08-16 15:02 大哥超帅 阅读(259) 评论(0) 推荐(0)
摘要: ```sh if [[ "${GIT_BRANCH}" == "xxx" ]]; then TAG_VERSION="V"$(mvn -Dexec.executable='echo' -Dexec.args='${project.version}' --non-recursive exec:exec 阅读全文
posted @ 2023-06-21 15:57 大哥超帅 阅读(237) 评论(0) 推荐(0)
摘要: 此特性还在孵化,后续版本可能有变动 //全部执行直到有失败的任务 String handle() throws ExecutionException, InterruptedException { try (var scope = new StructuredTaskScope.ShutdownOn 阅读全文
posted @ 2023-04-26 17:38 大哥超帅 阅读(50) 评论(0) 推荐(0)
摘要: 实测最新的idea 2023.1 ue 自带maven镜像加速,没必要再配置国内的镜像源 阅读全文
posted @ 2023-04-24 09:55 大哥超帅 阅读(70) 评论(0) 推荐(0)