百度提交网站收录查询网站建设费属于哪个会计科目

news/2025/9/23 2:06:05/文章来源:
百度提交网站收录查询,网站建设费属于哪个会计科目,谷歌官网首页,象山seo的优化目录 一、初始配置 二、添加文件 三、查看日志 四、修改文件 五、版本回退 六、撤销修改 七、删除文件 一、初始配置 Git版本控制器#xff1a;记录每次的修改以及版本迭代的一个管理系统。 # 初始化本地仓库#xff1a;git init(base) [rootlocalhost gitcode]# gi…目录 一、初始配置 二、添加文件 三、查看日志 四、修改文件 五、版本回退 六、撤销修改 七、删除文件 一、初始配置 Git版本控制器记录每次的修改以及版本迭代的一个管理系统。 # 初始化本地仓库git init(base) [rootlocalhost gitcode]# git init 重新初始化现存的 Git 版本库于 /root/gitee/gitcode/.git/ (base) [rootlocalhost gitcode]# ls -a . .. .git (base) [rootlocalhost gitcode]# tree .git .git ├── branches ├── config ├── description ├── HEAD ├── hooks │ ├── applypatch-msg.sample │ ├── commit-msg.sample │ ├── post-update.sample │ ├── pre-applypatch.sample │ ├── pre-commit.sample │ ├── prepare-commit-msg.sample │ ├── pre-push.sample │ ├── pre-rebase.sample │ └── update.sample ├── info │ └── exclude ├── objects │ ├── info │ └── pack └── refs├── heads└── tags9 directories, 13 files (base) [rootlocalhost gitcode]# # 查看本地仓库配置(base) [rootlocalhost gitcode]# git config -l push.defaultmatching core.repositoryformatversion0 core.filemodetrue core.barefalse core.logallrefupdatestrue (base) [rootlocalhost gitcode]# # 配置当前仓库(base) [rootlocalhost gitcode]# git config user.name ljc (base) [rootlocalhost gitcode]# git config user.email 1210451061qq.com (base) [rootlocalhost gitcode]# git config -l push.defaultmatching core.repositoryformatversion0 core.filemodetrue core.barefalse core.logallrefupdatestrue user.nameljc user.email1210451061qq.com (base) [rootlocalhost gitcode]# # 删除当前仓库配置(base) [rootlocalhost gitcode]# git config --unset user.name (base) [rootlocalhost gitcode]# git config --unset user.email (base) [rootlocalhost gitcode]# git config -l push.defaultmatching core.repositoryformatversion0 core.filemodetrue core.barefalse core.logallrefupdatestrue (base) [rootlocalhost gitcode]# # 配置当前机器的全部仓库(base) [rootlocalhost gitcode]# git config --global user.name ljc (base) [rootlocalhost gitcode]# git config --global user.email 1210451061qq.com (base) [rootlocalhost gitcode]# git config -l push.defaultmatching user.nameljc user.email1210451061qq.com core.repositoryformatversion0 core.filemodetrue core.barefalse core.logallrefupdatestrue# 删除当前机器的全部仓库配置(base) [rootlocalhost gitcode]# git config --global --unset user.name (base) [rootlocalhost gitcode]# git config --global --unset user.email (base) [rootlocalhost gitcode]# git config -l push.defaultmatching core.repositoryformatversion0 core.filemodetrue core.barefalse core.logallrefupdatestrue (base) [rootlocalhost gitcode]# 二、添加文件 ⼯作区是在电脑上你要写代码或⽂件的⽬录。 暂存区英⽂叫 stage 或 index 。⼀般存放在 .git ⽬录下的 index ⽂件.git/index中我们把暂存区有时也叫作索引index。 版本库⼜名仓库英⽂名 repository 。⼯作区有⼀个隐藏⽬录 .git 它不算⼯作区⽽是 Git 的版本库。这个版本库⾥⾯的所有⽂件都可以被 Git 管理起来每个⽂件的修改、删除Git 都能跟踪以便任何时刻都可以追踪历史或者在将来某个时刻可以“还原”。 创建 Git 版本库时Git会为我们⾃动创建⼀个唯⼀的 master 分⽀以及指向 master 的⼀个指针叫 HEAD。对⼯作区修改或新增的⽂件执⾏ git add 命令时暂存区⽬录树的⽂件索引会被更新。执⾏提交操作 git commit 时master 分⽀会做相应的更新可以简单理解为暂存区的⽬录树才会被真正写到版本库中。 # 添加一个文件(base) [rootlocalhost gitcode]# ls (base) [rootlocalhost gitcode]# touch file1 (base) [rootlocalhost gitcode]# vim file1 (base) [rootlocalhost gitcode]# cat file1 hello git(base) [rootlocalhost gitcode]# git add file1 (base) [rootlocalhost gitcode]# git commit -m Add first file [master根提交 fc3a350] Add first file1 file changed, 2 insertions()create mode 100644 file1 (base) [rootlocalhost gitcode]# # 添加多个文件(base) [rootlocalhost gitcode]# touch file2 file3 file4 (base) [rootlocalhost gitcode]# git add . (base) [rootlocalhost gitcode]# git commit -m Add three files [master f2e9210] Add three files3 files changed, 0 insertions(), 0 deletions(-)create mode 100644 file2create mode 100644 file3create mode 100644 file4 (base) [rootlocalhost gitcode]# git log commit f2e92108d0fe7ec01a6c49d1372e4907cac6d96b Author: ljc 1210451061qq.com Date: Wed Feb 7 05:13:08 2024 0800Add three filescommit fc3a3507b30d2f4374a71245a034e00f94ea8363 Author: ljc 1210451061qq.com Date: Wed Feb 7 05:11:56 2024 0800Add first file (base) [rootlocalhost gitcode]# 三、查看日志 # git log 命令显⽰从最近到最远的提交⽇志 # 加上 --prettyonline 参数会将日志简洁显示(base) [rootlocalhost gitcode]# git log --prettyoneline f2e92108d0fe7ec01a6c49d1372e4907cac6d96b Add three files fc3a3507b30d2f4374a71245a034e00f94ea8363 Add first file (base) [rootlocalhost gitcode]## 通过 git log 可以看到的长字符串是每次提交的commit id版本号是一个哈希值 # 查看 .git(base) [rootlocalhost gitcode]# tree .git .git ├── branches ├── COMMIT_EDITMSG ├── config ├── description ├── HEAD ├── hooks │ ├── applypatch-msg.sample │ ├── commit-msg.sample │ ├── post-update.sample │ ├── pre-applypatch.sample │ ├── pre-commit.sample │ ├── prepare-commit-msg.sample │ ├── pre-push.sample │ ├── pre-rebase.sample │ └── update.sample ├── index ├── info │ └── exclude ├── logs │ ├── HEAD │ └── refs │ └── heads │ └── master ├── objects │ ├── 2c │ │ └── 0f71d14208bc896178ce4eb92870c659c04202 │ ├── 74 │ │ └── cbb01783907aa0807236331230386d5e1241cf │ ├── 7f │ │ └── 112b196b963ff72675febdbb97da5204f9497e │ ├── e6 │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ ├── f2 │ │ └── e92108d0fe7ec01a6c49d1372e4907cac6d96b │ ├── fc │ │ └── 3a3507b30d2f4374a71245a034e00f94ea8363 │ ├── info │ └── pack └── refs├── heads│ └── master└── tags18 directories, 24 files (base) [rootlocalhost gitcode]# # index 是暂存区add 后的内容会添加进缓存区 # HEAD 是默认指向 master 分支的指针 # 默认的 master 保存的就是最新的 commit id(base) [rootlocalhost gitcode]# cat .git/HEAD ref: refs/heads/master (base) [rootlocalhost gitcode]# cat .git/refs/heads/master f2e92108d0fe7ec01a6c49d1372e4907cac6d96b (base) [rootlocalhost gitcode]# # objects 为Git的对象库里面包含了创建的各个版本的对象及内容。 # 当执行 git add 的时候暂存区的对象树被更新 # 同时工作区修改或新增的文件内容被写入到对象库中的一个新的对象中 # 就位于 ./git/objects 目录下(base) [rootlocalhost gitcode]# ls .git/objects/ 2c 74 7f e6 f2 fc info pack# 查找 object 要将 commit id 分为两部分前2位是目录名称后38位文件名称 # 使用 git cat-file 查看版本库对象的内容 # 类型 可以是其中之一blob、tree、commit、tag # -t 显示对象类型 # -s 显示对象大小 # -e 当没有错误时退出并返回零 # -p 美观地打印对象的内容 # --textconv 对于数据blob对象对其内容执行 textconv # --batch 显示从标准输入提供的对象的信息和内容 # --batch-check 显示从标准输入提供的对象的信息(base) [rootlocalhost gitcode]# git cat-file -p f2e92108d0fe7ec01a6c49d1372e4907cac6d96b tree 74cbb01783907aa0807236331230386d5e1241cf parent fc3a3507b30d2f4374a71245a034e00f94ea8363 author ljc 1210451061qq.com 1707253988 0800 committer ljc 1210451061qq.com 1707253988 0800Add three files (base) [rootlocalhost gitcode]# git cat-file -p 74cbb01783907aa0807236331230386d5e1241cf 100644 blob 7f112b196b963ff72675febdbb97da5204f9497e file1 100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 file2 100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 file3 100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 file4 (base) [rootlocalhost gitcode]# # 查看 file1 对应的 commit id[rootlocalhost gitcode]# git cat-file -p 7f112b196b963ff72675febdbb97da5204f9497e hello git(base) [rootlocalhost gitcode]# 四、修改文件 Git版本控制器的本质跟踪并管理文件的修改而非文件本身。 # 对file1文件内容进行修改此时工作区和暂存区的文件版本不一致 # 用 git status 查看在你上次提交之后是否有对文件进行再次修改(base) [rootlocalhost gitcode]# vim file1 (base) [rootlocalhost gitcode]# cat file1 hello git hello world (base) [rootlocalhost gitcode]# git status # 位于分支 master # 尚未暂存以备提交的变更 # 使用 git add file... 更新要提交的内容 # 使用 git checkout -- file... 丢弃工作区的改动 # # 修改 file1 # 修改尚未加入提交使用 git add 和/或 git commit -a (base) [rootlocalhost gitcode]# # git diff [file] 查看暂存区和工作区文件的具体差异 # git diff HEAD -- [file] 查看版本库和工作区文件的具体差异(base) [rootlocalhost gitcode]# git diff file1 diff --git a/file1 b/file1 index 7f112b1..05fe86c 100644 --- a/file1b/file1-1,2 1,2 hello git - hello world (base) [rootlocalhost gitcode]# git diff HEAD -- file1 diff --git a/file1 b/file1 index 7f112b1..05fe86c 100644 --- a/file1b/file1-1,2 1,2 hello git - hello world (base) [rootlocalhost gitcode]# (base) [rootlocalhost gitcode]# git add file1 (base) [rootlocalhost gitcode]# git status # 位于分支 master # 要提交的变更 # 使用 git reset HEAD file... 撤出暂存区 # # 修改 file1 # (base) [rootlocalhost gitcode]# git commit -m modify: file1 [master 7df1e32] modify: file11 file changed, 1 insertion(), 1 deletion(-) (base) [rootlocalhost gitcode]# git status # 位于分支 master 无文件要提交干净的工作区 (base) [rootlocalhost gitcode]# 五、版本回退 Git将所有提交过的版本串成一条时间线若只有一条时间线则这个分支就是主分支即master分支。 对于master分支每一次提交master分⽀都会向前移动⼀步这样随着你不断提交master分⽀的线也越来越⻓,⽽HEAD只要⼀直指向master分⽀即可指向当前分⽀。 当进行版本回退的时候只需要改变master指针的指向就完成了版本回退非常高效。 # 给 file1 新增 vertion1 和 vertion2 两个版本并分别提交(base) [rootlocalhost gitcode]# vim file1 (base) [rootlocalhost gitcode]# cat file1 hello git hello world add vertion1 (base) [rootlocalhost gitcode]# git add file1 (base) [rootlocalhost gitcode]# git commit -m modify: add vertion1 [master 167def0] modify: add vertion11 file changed, 1 insertion() (base) [rootlocalhost gitcode]# vim file1 (base) [rootlocalhost gitcode]# cat file1 hello git hello world add vertion1 add vertion2 (base) [rootlocalhost gitcode]# git add file1 (base) [rootlocalhost gitcode]# git commit -m modigy: add vertion2 [master c31b56a] modigy: add vertion21 file changed, 1 insertion() (base) [rootlocalhost gitcode]# # 通过 git reset 回退版本 # 在进行版本回退之前通常先用 git log 查看历史版本(base) [rootlocalhost gitcode]# git log --prettyoneline c31b56a87a6387873d7db9a16f7d1c81b4b2339e modigy: add vertion2 167def04692b8f6fa68cc835f41a81584ca31b7e modify: add vertion1 7df1e322e9d267964f51e91dac900bb1a77f171d modify: file1 f2e92108d0fe7ec01a6c49d1372e4907cac6d96b Add three files fc3a3507b30d2f4374a71245a034e00f94ea8363 Add first file (base) [rootlocalhost gitcode]# git reset 167def04692b8f6fa68cc835f41a81584ca31b7e 重置后撤出暂存区的变更 M file1 (base) [rootlocalhost gitcode]# cat file1 hello git hello world add vertion1 add vertion2 (base) [rootlocalhost gitcode]# git reset --hard 167def04692b8f6fa68cc835f41a81584ca31b7e HEAD 现在位于 167def0 modify: add vertion1 (base) [rootlocalhost gitcode]# cat file1 hello git hello world add vertion1 (base) [rootlocalhost gitcode]# # 由上可见直接使用 git reset 回退版本工作区的文件内容并未修改 # 因为回退版本的完整命令格式为git reset [--soft | --mixed | --hard] [HEAD]# 不同的参数代表不同的回退方式 # --soft 对于工作区和暂存区的内容都不变只将版本库回退到指定版本 # --mixed 对于工作区的内容不变暂存区和版本库回退到指定版本默认参数 # --hard 对于工作区、暂存区和版本库都回退到指定版本# [HEAD] 说明 # 1. 可直接写成 commid id表示特定的版本 # 2. HEAD 表示当前版本 # 3. HEAD^ 表示上一个版本 # 4. HEAD^^ 表示上上个版本 # 5. ... 依此类推 # 当我回退到 vertion1 之后后悔我想再回到 vertion2 怎么办? # 1. 直接用 vertion2 的 commit id 进行回退 # 2. 如果找不到 vertion2 的 commit id 了通过 git reflog 查看本地的历史命令 # 可以得到 vertion2 的部分 commit id也可直接回退(base) [rootlocalhost gitcode]# git reflog 167def0 HEAD{0}: reset: moving to 167def04692b8f6fa68cc835f41a81584ca31b7e c31b56a HEAD{1}: commit: modigy: add vertion2 167def0 HEAD{2}: commit: modify: add vertion1 7df1e32 HEAD{3}: reset: moving to 7df1e322e9d267964f51e91dac900bb1a77f171d 3d8c2fe HEAD{4}: commit: modify: add vertion1 7df1e32 HEAD{5}: commit: modify: file1 f2e9210 HEAD{6}: commit: Add three files fc3a350 HEAD{7}: commit (initial): Add first file (base) [rootlocalhost gitcode]# git reset --hard c31b56a HEAD 现在位于 c31b56a modigy: add vertion2 (base) [rootlocalhost gitcode]# cat file1 hello git hello world add vertion1 add vertion2 (base) [rootlocalhost gitcode]# 六、撤销修改 版本回退是我们已经提交了版本更新了版本库之后再进行回退操作但是如果我们在开发过程中新写了很多代码但是没有 add 这时候忽然发现自己写的代码全是屎山代码想要回到新增代码前的版本该怎么做呢是先提交更新版本再版本回退吗 上述方式虽然也行但是太麻烦了可以直接用 git checkout -- [file] 命令让工作区的文件回到最近一次 add 和 commit 时的状态。 (base) [rootlocalhost gitcode]# vim file1 (base) [rootlocalhost gitcode]# cat file1 hello git hello world add vertion1 add vertion2 too much shit code!!! (base) [rootlocalhost gitcode]# git status # 位于分支 master # 尚未暂存以备提交的变更 # 使用 git add file... 更新要提交的内容 # 使用 git checkout -- file... 丢弃工作区的改动 # # 修改 file1 # 修改尚未加入提交使用 git add 和/或 git commit -a (base) [rootlocalhost gitcode]# git checkout -- file1 (base) [rootlocalhost gitcode]# cat file1 hello git hello world add vertion1 add vertion2 (base) [rootlocalhost gitcode]## 如果代码已经 add 但还没 commit 呢怎么处理 # 方法1先 git reset [file] 再 git checkout --[file] # 方法2直接 git reset --hard [file](base) [rootlocalhost gitcode]# vim file1 (base) [rootlocalhost gitcode]# cat file1 hello git hello world add vertion1 add vertion2 too much shit code (base) [rootlocalhost gitcode]# git add file1 (base) [rootlocalhost gitcode]# git status # 位于分支 master # 要提交的变更 # 使用 git reset HEAD file... 撤出暂存区 # # 修改 file1 # (base) [rootlocalhost gitcode]# git log --prettyoneline c31b56a87a6387873d7db9a16f7d1c81b4b2339e modigy: add vertion2 167def04692b8f6fa68cc835f41a81584ca31b7e modify: add vertion1 7df1e322e9d267964f51e91dac900bb1a77f171d modify: file1 f2e92108d0fe7ec01a6c49d1372e4907cac6d96b Add three files fc3a3507b30d2f4374a71245a034e00f94ea8363 Add first file (base) [rootlocalhost gitcode]# git reset --hard c31b56a87a6387873d7db9a16f7d1c81b4b2339e HEAD 现在位于 c31b56a modigy: add vertion2 (base) [rootlocalhost gitcode]# cat file1 hello git hello world add vertion1 add vertion2 (base) [rootlocalhost gitcode]# 七、删除文件 删除的本质也是修改如果我们在工作区用 rm 命令删除了一个文件那么可能是两种原因 误删确定要删除该文件 # 如果是误删那么我们需要取消删除操作也就是撤销修改操作。 # 如果是确认要删除该文件那么通过 rm 删除之后工作区和暂存区、版本库就不一致了。 # 我们该如何处理呢 # 我们需要先将删除后的工作区更新到暂存区再将暂存区提交到版本库。(base) [rootlocalhost gitcode]# ls file1 file2 file3 file4 (base) [rootlocalhost gitcode]# rm -rf file4 (base) [rootlocalhost gitcode]# ls file1 file2 file3 (base) [rootlocalhost gitcode]# git status # 位于分支 master # 尚未暂存以备提交的变更 # 使用 git add/rm file... 更新要提交的内容 # 使用 git checkout -- file... 丢弃工作区的改动 # # 删除 file4 # 修改尚未加入提交使用 git add 和/或 git commit -a (base) [rootlocalhost gitcode]# git add . warning: 您在运行 git add 时没有指定 -A (--all) 或 --ignore-removal 针对其中本地移除路径的行为将在 Git 2.0 版本库发生变化。 像本地工作区移除的路径 file4 在此版本的 Git 中被忽略。* git add --ignore-removal pathspec是当前版本的默认操作忽略您本地工作区中移除的文件。* git add --all pathspec 将让您同时对删除操作进行记录。运行 git status 来检查您本地工作区中移除的路径。(base) [rootlocalhost gitcode]# git add --all file4 (base) [rootlocalhost gitcode]# git commit -m delete file4 [master 0f28717] delete file41 file changed, 0 insertions(), 0 deletions(-)delete mode 100644 file4 (base) [rootlocalhost gitcode]# git status # 位于分支 master 无文件要提交干净的工作区 (base) [rootlocalhost gitcode]# ls file1 file2 file3 (base) [rootlocalhost gitcode]# # 由上可得我们需要处理不一致问题也就是将删除后的新版本再次提交到版本库 # 我们可以也通过 git rm 进行文件删除这样直接就删除了工作区和暂存区的文件 # 我们只需要接着 git commit -m 更新删除后的版本就行了(base) [rootlocalhost gitcode]# ls file1 file2 file3 (base) [rootlocalhost gitcode]# git rm file3 rm file3 (base) [rootlocalhost gitcode]# ls file1 file2 (base) [rootlocalhost gitcode]# git status # 位于分支 master # 要提交的变更 # 使用 git reset HEAD file... 撤出暂存区 # # 删除 file3 # (base) [rootlocalhost gitcode]# git commit -m delete file3 [master 84b615b] delete file31 file changed, 0 insertions(), 0 deletions(-)delete mode 100644 file3 (base) [rootlocalhost gitcode]#

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/911072.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

在青岛做阿里巴巴网站找谁wordpress积分内容

在C语言中,指针通常与字符数组或字符串打交道时会涉及到ASCII码的转换,而不是用于表现多位数的第一位。48这个值对应的是ASCII码表中数字字符0的编码。 如果你有一个表示多位数的字符数组,例如: c char number[] "1234&qu…

教育网站建设情况报告软件设计包括哪些内容

背景 微信开发者工具中,打开集成了vant-weapp的项目,构建npm时,报错\miniprogram_npm\ 未找到。 问题 微信开发者工具,工具----->构建npm时,提示 message:发生错误 Error: D:\some\path\miniprogram…

wordpress网站使用教程湖南金科建设有限公司网站

P2571 [SCOI2010]传送带 题意: 你要从 A 点到 D 点。有两条传送带:第一条从 A 到 B,速度为 pp,第二条从 C 到 D,速度为 q。不走传送带时速度为 r。求从 A 到 D 的最少时间。 题解: 很明显,答…

山东省机关建设网站移动电商网站建设

用过Wordpress做博客或者建站的朋友,都会知道Wordpress默认的登陆地址是wp-login.php,很多恶意程序就是通过爬这个地址,尝试使用常见的用户名密码组合来入侵Wordpress。尽管我们可以通过使用复杂的用户名、高强度的密码来防止恶意程序的猜测&…

网站首页做了一下调整会被k吗wordpress cpanel管理后台

CSS(Cascading Style Sheets) 美化样式 CSS通常称为CSS样式表或层叠样式表(级联样式表),主要用于设置HTML页面中的文本内容(字体、大小、对齐方式等)、图片的外形(宽高、边框样式、边距等)以及…

亚星网站代理公司网站建设的工具

GitHub桌面版 一、GitHub 桌面版二、clone 仓库三、更新仓库 一、GitHub 桌面版 二、clone 仓库 三、更新仓库

网站开发费怎么做账医药网站开发

简介: 欲善其事,先利其器。对于研发同学,在日常的开发工作中,我们与之打交道最多的便是编程的IDE。能否高效和灵活的使用IDE,将对我们的工作效率起着举足轻重的作用。 一 、背景 1 、目的 欲善其事,先利其…

网站群建设公司wordpress 列表分类链接 v1.3

前段时间迁移.NET Core做了大量的试水和评估,今天整理一下分享给大家。大致有以下几个部分:1. .NET Core的由来2. 为什么要迁移.NET Core3. .NET Core3.X主要特性4. .NET Standard和.NET Core5. .NET Core Roadmap&版本选择接下来,我们详…

蓝牙app开发软件鹤壁搜索引擎优化

1. Multiple XIP support XIP(eXecute-In-Place)是本地执行,允许在ROM芯片内执行XIP区域(region)的应用代码,而不必再把代码读取到RAM中来执行。WINCE支持我们在单个系统中构建(construct)多个XIP区域,基于下面的理由使用多个XIP区域来代替…

建设网站导航什么是网络推广营销

(꒪ꇴ꒪ ),Hello我是祐言QAQ我的博客主页:C/C语言,Linux基础,ARM开发板,软件配置等领域博主🌍快上🚘,一起学习,让我们成为一个强大的攻城狮!送给自己和读者的一句鸡汤🤔&…

旅行网站信息技术化建设邯郸市环保局网站建设项目环境

一、创作思路 1、创建一个自定义CustomPrimitive 2、可动态更新线的点位 3、方便后期绘制线 二、实现代码 1、创建一个CustomPolylinePrimitive类,并加入更新的代码 export default class CustomPolylinePrimitive {constructor(options) {this._props options;/*** 渲染列表…

大学网站建设装修公司加盟哪个好

大模型部署背景 参数用FP16半精度也就是2字节,7B的模型就大约占14G 2.LMDeploy简介 量化降低显存需求量,提高推理速度 大语言模型推理是典型的访问密集型,因为是decoder only的架构,需要token by token的生成,因…

做一个网站赚钱吗菏泽定制网站建设推广

前言 前段时间开发新的微信小程序,借此机会将老掉牙的支付模块重构,并且支持现金支付(之前都是虚拟币支付),在重构期间遇到计算上的一些精度问题,虽然数额影响非常小但是影响比较大,我觉得有必…

网站seo检测做网站招商需要具备什么

无人机航测精品专栏链接:《无人机航空摄影测量精品教程》 【天工Godwork精品教程】任务一:创建工程(导入相片、编辑相机参数、导入POS) 【天工Godwork精品教程】任务二:导入控制点、POS权重设置、自由空三 【天工Godwork精品教程】任务三:刺像控点、空三平差、精度优化调…

文山专业网站建设漯河做网站的

当我们的代码打包过后再看源码就会变成下面这个样子: 这时候我们就调试不了我们的代码 解决方式: 在webpack.config.js中添加如下代码: module.exports {mode: "development", // 设置打包的模式:production生产模式…

门户网站建设的必要性大连排名推广

Sleuth 一 引言 随着服务的越来越多,对调⽤链的分析会越来越复杂。它们之间的调⽤关系也许如下图: 问题: 1:微服务之间的调⽤错综复杂,⽤户发送的请求经历那些服务,调⽤链不清楚,没有⼀ 个⾃…

建设网站服务费会计分录网站建设的销售话术

写在前面 Edge现在也不管用户体验了吗? 这个BUG都快一个月了,还没见修复,从118.0.2088开始,我是在2023年10月份一次更新后发现的这个BUG,结果社区论坛什么信息都没有,英文也没收到。 Edge的BUG现象 不知道哪次Edge…

网站正能量大全上海公司排名

有时需要判断一个字符是不是汉字,比如在用户输入含有中英文的内容时,需要判断是否超过规定长度就要用到。用 Javascript 判断通常有两种方法。1、用正则表达式判断js判断字符是否是汉字.content{width:350px;overflow:hidden;border:1px solid #ddd;}fun…

网上宿迁官方网站互联网推广方法

1、电路芯片 485芯片有很多种,项目中用的比较多的是高速SP3485。满足RS-485和RS-422串行协议的要求,兼容工业标准规范,数据传输速率可高达10Mbps(带负载)。 2、工业设计 485需要做防雷考虑、瞬态过电压抑制、阻抗匹配…

郑州制作平台网站舟山做网站

正则表达式,一个十分古老而又强大的文本处理工具,仅仅用一段非常简短的表达式语句,便能够快速实现一个非常复杂的业务逻辑。熟练地掌握正则表达式的话,能够使你的开发效率得到极大的提升。正则表达式经常被用于字段或任意字符串的…