Gitea v1.21.1 中文文档容器注册表 通用软件包注册表 Go 软件包注册表 Helm Chart 注册表 Maven 软件包注册表 npm 软件包注册表 NuGet 软件包注册表 Pub 软件包注册表 Swift 软件包注册表 PyPI 软件包注册表 RubyGems 软件包注册表 Vagrant 软件包注册表 Alpine 软件包注册表 CRAN 软件包注册表 Debian 软件包注册表 RPM LIMIT_SIZE_RUBYGEMS :-1:RubyGems 上传的最大大小( -1 表示无限制,格式为 1000 、 1 MB 、 1 GiB )。 LIMIT_SIZE_SWIFT :-1:Swift 上传的最大大小( -1 表示无限制,格式为 1000 、 1 MB 、 1 GiB )。 LIMIT_SIZE_VAGRANT :-1:Vagrant 上传的最大大小( 容器注册表 通用软件包注册表 Go 软件包注册表 Helm Chart 注册表 Maven 软件包注册表 npm 软件包注册表 NuGet 软件包注册表 Pub 软件包注册表 Swift 软件包注册表 PyPI 软件包注册表 RubyGems 软件包注册表 Vagrant 软件包注册表 Alpine 软件包注册表 CRAN 软件包注册表 Debian 软件包注册表 RPM0 码力 | 303 页 | 3.88 MB | 1 年前3
2021 中国开源年度报告存量的情况下仍有不错的增长态势,使用 Java 的仓库数量占比超越了 2020 年的 37%,回 到了 2019 年的 50%左右。 移动端语言(Android/Objective-C/Swift)在 2021 年仍难以重现往日的辉煌,仅剩下 Android 以 1.89% 的占比留在第十名,这与跨平台开发框架和各类小程序越来越流行不无 关系,移动端原生 App 在未来的发展路线会是怎样?这个问题值得持续关注。 37% in 2020 and returning to around 50% in 2019. The mobile languages (Android/Objective-C/Swift) are still struggling to regain their former glory in 2021, with only Android remaining in 10th 贡献的收入占比由当年的 1% 迅速上升至 2021 财年前三 季度的 44%。2021 财年,Atlas 产品实现收入 2.72 亿美元,同比增加 46%。 MongoDB cloud services develop rapidly. Atlas is a MongoDB-hosted multi-cloud product, and the MongoDB Atlas Free Tier products0 码力 | 199 页 | 9.63 MB | 1 年前3
Pro Git 2nd Edition 2.1.413prompted the Linux development community (and in particular Linus Torvalds, the creator of Linux) to develop their own tool based on some of the lessons they learned while using BitKeeper. Some of the goals mastering this feature gives you a powerful and unique tool and can entirely change the way that you develop. Branches in a Nutshell To really understand the way Git does branching, we need to take a step possibly only code that has been or will be released. They have another parallel branch named develop or next that they work from or use to test stability — it isn’t necessarily always stable, but whenever0 码力 | 731 页 | 21.49 MB | 1 年前3
Pro Git 2nd Edition 2.1.413prompted the Linux development community (and in particular Linus Torvalds, the creator of Linux) to develop their own tool based on some of the lessons they learned while using BitKeeper. Some of the goals mastering this feature gives you a powerful and unique tool and can entirely change the way that you develop. Branches in a Nutshell To really understand the way Git does branching, we need to take a step — possibly only code that has been or will be released. They have another parallel branch named develop or next that they work from or use to test stability — it isn’t necessarily always stable, but whenever0 码力 | 501 页 | 17.96 MB | 1 年前3
Pro Git 2nd Edition 2.1.413 prompted the Linux development community (and in particular Linus Torvalds, the creator of Linux) to develop their own tool based on some of the lessons they learned while using BitKeeper. Some of the goals mastering this feature gives you a powerful and unique tool and can entirely change the way that you develop. Branches in a Nutshell To really understand the way Git does branching, we need to take a step — possibly only code that has been or will be released. They have another parallel branch named develop or next that they work from or use to test stability — it isn’t necessarily always stable, but whenever0 码力 | 691 页 | 13.35 MB | 1 年前3
Pro Git 中文版 第2版 2.1.66主题分支合并入其他分支中。 许多使用 Git 的开发者都喜欢使用这种方式来工作,比如只在 master 分支上保留完全稳定的代码——有可能仅 仅是已经发布或即将发布的代码。 他们还有一些名为 develop 或者 next 的平行分支,被用来做后续开发或者 测试稳定性——这些分支不必保持绝对稳定,但是一旦达到稳定状态,它们就可以被合并入 master 分支了。 这 样,在确保这些已完成的主题分支(短期分支,比如之前的 master 和 develop,master 分支只会在一个非常稳定的版本发布时才会更新,而所有的新代码会首先整合进 入 develop 分支。 你定期将这两个分支推送到公共版本库中。 每次需要合并新的主题分支时(合并主题分支 前。),你都应该合并进入 develop 分支(合并主题分支后。);当打标签发布的时候,你会将 master 分支 快进到已经稳定的 develop 分支(一次发布之后。)。 这样当人们克隆你项目的版本库后,既可以检出 master 分支以构建最新的稳定版本并保持更新, 也可以检出 包含更多前沿内容 develop 分支。 你也可以扩展这个概念,维护一个将所有工作合并到一起的整合分支。 当该 分支的代码稳定并通过测试之后,将其合并进入 develop 分支; 经过一段时间,确认其稳定之后,将其以快进 的形式并入 master 分支。 大项目合并工作流 Git 项目包0 码力 | 501 页 | 19.30 MB | 1 年前3
Pro Git 中文版 第2版 2.1.66并入其他分支中。 许多使用 Git 的开发者都喜欢使用这种方式来工作,比如只在 master 分支上 保留完全稳定的代码——有可能仅仅是已经发布或即将发布的代码。 他们还 有一些名为 develop 或者 next 的平行分支,被用来做后续开发或者测试稳定 性——这些分支不必保持绝对稳定,但是一旦达到稳定状态,它们就可以被合 并入 master 分支了。 这样,在确保这些已完成的主题分支(短期分支,比如 master 和 develop,master 分支只会在一个非 常稳定的版本发布时才会更新,而所有的新代码会首先整合进入 develop 分 支。 你定期将这两个分支推送到公共版本库中。 每次需要合并新的主题分支 时(合并主题分支前。),你都应该合并进入 develop 分支(合并主题分支 后。);当打标签发布的时候,你会将 master 分支快进到已经稳定的 develop 分支(一次发布之后。)。 这样当人们克隆你项目的版本库后,既可以检出 master 分支以构建最新的稳 定版本并保持更新, 也可以检出包含更多前沿内容 develop 分支。 你也可以 扩展这个概念,维护一个将所有工作合并到一起的整合分支。 当该分支的代 码稳定并通过测试之后,将其合并进入 develop 分支; 经过一段时间,确认 其稳定之后,将其以快进的形式并入 master 分支。 大项目合并工作流 Git 项目0 码力 | 670 页 | 13.59 MB | 1 年前3
Apache OFBiz® Selenium-WebDriver
real business data. Constrains Error correction, when error is detected by a Unit Test, should be swift, because test boundary is very clear. A Unit Test is not build to be used by a scenario test, so0 码力 | 38 页 | 1006.03 KB | 1 年前3
2023 中国开源开发者报告replacement I’ ve been waiting for. Arc 旨在成为一个“万维网的操作系统”,并试图将网页浏览与内置应用程 序和功能整合在一起。Arc 基于 Chromium 并用 Swift 语言编写。 openKylin 1.0 重磅发布 Blink 1.0 于 2023 年 6 月正式发布。Blink 是无特权用户空间虚拟机,支 持在任何 POSIX 平台上模拟 x86-64-linux0 码力 | 87 页 | 31.99 MB | 1 年前3
2021 中国开源年度报告年仍保持着强大的竞争力,仓库数量在极高存量的情况下 仍有不错的增长态势,使用 Java 的仓库数量占比超越了 2020 年的 37%,回到了 2019 年的 50% 左右。 移动端语言(Android/Objective-C/Swift)在 2021 年仍难以重现往日的辉煌,仅剩下 Android 以 1.89% 的占比留在第十名,这与跨平台开发框架和各类小程序越来越流行不无关系,移动端原生 App 在未来的发展路线会是怎样?这个问题值得持续关注。0 码力 | 132 页 | 14.24 MB | 1 年前3
共 92 条
- 1
- 2
- 3
- 4
- 5
- 6
- 10













