本文分类:news发布日期:2025/1/11 9:52:25
相关文章
Monorepo 解决方案 — 基于 Bazel 的 Xcode 性能优化实践
背景介绍 书接上回《Monorepo 解决方案 — Bazel 在头条 iOS 的实践》,在头条工程切换至 Bazel 构建系统后,为了支持用户使用 Xcode 开发的习惯,我们使用了开源项目 Tulsi 作为生成工具,用于将 Bazel 工程转换为 Xcode 工程。但是…
建站知识
2024/12/27 14:47:32
Docker常见指令
1.docker search mysql :从docker镜像仓库搜索和mysql有关的镜像
docker search mysql 2.docker pull mysql :从docker仓库拉取mysql镜像
docker pull mysql 3.docker run mysql :启动mysql镜像
docker run mysql
4.docker ps ÿ…
建站知识
2024/12/29 1:28:03
郑州大学2024年3月天梯赛选拔赛题解(A-L)
这场的题水平很高,由acm实验室队长亲自拉的题单(教练?什么教练?不认识),上面的题都是abc(atcoder begining contest)原题,比赛结束后在每道题的名字上都列出了出处&#…
建站知识
2024/12/24 9:08:20
C#,图论与图算法,图着色问题(Graph Coloring)的威尔士-鲍威尔(Welch Powell Algorithm)算法与源代码
Welsh, D.J.A. and Powell, M.B. (1967) An Upper Bound for the Chromatic Number of a Graph and Its Application to Timetabling Problems. 《The Computer Journal》, 10, 85-86. 《The Computer Journal》 1 图着色算法概述
1967年,Welsh和Powell算法引入了…
建站知识
2025/1/6 6:07:42
NLP:bert下载与使用
没办法,模型精度还是不够,只能暂时弃用text2vec。然后我在github上发现了中文文本处理的老大哥:bert
python使用bert可以参考这篇博客:博客
但是篇博客又出现了上一节的问题: We couldnt connect to https://hugging…
建站知识
2025/1/10 19:42:16
lua制作flash钢琴
效果预览
apk使用manaluax打包,源码在文末提供。
应用体验下载地址:https://www.magicalapk.com/appview?id1705213059764 源码
布局代码 {LinearLayout;gravity"center";layout_height"fill";orientation"vertical";…
建站知识
2025/1/8 12:24:12
kotlin 程序 编译与执行
准备kotlin环境 Ubuntu安装kotlin
1. 创建一个名为 hello.kt 文件,代码如下:
fun main(args: Array<String>) {println("Hello, World!")
}2. 使用 Kotlin 编译器编译应用
kotlinc hello.kt -include-runtime -d hello.jar-d: 用来设…
建站知识
2025/1/1 21:50:03
x86_64架构栈帧以及帧指针FP
文章目录 一、x86_64架构寄存器简介二、x86_64架构帧指针FP三、示例四、保存帧指针参考资料 一、x86_64架构寄存器简介
在x86架构中,有8个通用寄存器可用:eax、ebx、ecx、edx、ebp、esp、esi和edi。在x86_64(x64)扩展中ÿ…
建站知识
2025/1/1 7:24:41