2024年7月23日 (星期二)
- 10:472024年7月23日 (二) 10:47 差异 历史 +210 Supervised fine-tuning 无编辑摘要
- 03:192024年7月23日 (二) 03:19 差异 历史 +105 Caching patterns →Cache-Aside (Lazy Loading) 当前
- 03:122024年7月23日 (二) 03:12 差异 历史 +1,184 新 Caching patterns 创建页面,内容为“When you are caching data from your database, there are caching patterns for Redis and Memcached that you can implement, including proactive and reactive approaches. The patterns you choose to implement should be directly related to your caching and application objectives. Two common approaches are cache-aside or lazy loading (a reactive approach) and write-through (a proactive approach). A cache-aside cache is updated after the data is requested. A write-thro…”
- 03:032024年7月23日 (二) 03:03 差异 历史 +244 Saga 无编辑摘要 当前
- 02:592024年7月23日 (二) 02:59 差异 历史 0 新 文件:From-2pc-to-sage.png 无编辑摘要 当前
- 02:592024年7月23日 (二) 02:59 差异 历史 +39 Saga 无编辑摘要
- 02:592024年7月23日 (二) 02:59 差异 历史 −7 Saga 无编辑摘要 标签:手工回退
- 02:582024年7月23日 (二) 02:58 差异 历史 +7 Saga 无编辑摘要 标签:已被回退
- 02:582024年7月23日 (二) 02:58 差异 历史 +85 新 Saga 创建页面,内容为“<ref>https://microservices.io/patterns/data/saga.html</ref> Category:Distributed”
2024年7月19日 (星期五)
- 07:432024年7月19日 (五) 07:43 差异 历史 +74 首页 →网站收藏
- 07:422024年7月19日 (五) 07:42 差异 历史 +75 首页 无编辑摘要
- 06:152024年7月19日 (五) 06:15 差异 历史 +142 Llama.cpp →Run the model 当前
- 02:562024年7月19日 (五) 02:56 差异 历史 +151 Llama.cpp →Convert Hugging Face Model to GGUF
- 02:482024年7月19日 (五) 02:48 差异 历史 +153 Llama.cpp →Convert Hugging Face Model to GGUF
- 02:392024年7月19日 (五) 02:39 差异 历史 +36 Llama.cpp →Convert Hugging Face Model to GGUF
- 02:372024年7月19日 (五) 02:37 差异 历史 +121 Llama.cpp →Build llama.cpp
- 01:462024年7月19日 (五) 01:46 差异 历史 +212 Llama.cpp 无编辑摘要
- 01:442024年7月19日 (五) 01:44 差异 历史 +28 新 Llama.cpp 创建页面,内容为“ Category:Deep Learning”
2024年7月3日 (星期三)
- 06:382024年7月3日 (三) 06:38 差异 历史 +103 Collaborative editing 无编辑摘要
- 06:182024年7月3日 (三) 06:18 差异 历史 −2 Paxos algorithm 无编辑摘要 当前
- 06:182024年7月3日 (三) 06:18 差异 历史 0 小 Paxos algorithm Riguz移动页面Distributed:Paxos算法至Paxos algorithm,不留重定向
- 02:342024年7月3日 (三) 02:34 差异 历史 +63 首页 无编辑摘要
- 02:242024年7月3日 (三) 02:24 差异 历史 +111 Collaborative editing 无编辑摘要
2024年7月2日 (星期二)
- 11:312024年7月2日 (二) 11:31 差异 历史 +111 Collaborative editing 无编辑摘要
- 11:292024年7月2日 (二) 11:29 差异 历史 +128 Collaborative editing 无编辑摘要
- 11:232024年7月2日 (二) 11:23 差异 历史 +106 Collaborative editing 无编辑摘要
- 11:002024年7月2日 (二) 11:00 差异 历史 +83 Collaborative editing 无编辑摘要
- 10:492024年7月2日 (二) 10:49 差异 历史 +65 Collaborative editing 无编辑摘要
- 09:492024年7月2日 (二) 09:49 差异 历史 +125 新 Collaborative editing 创建页面,内容为“ * http://operational-transformation.github.io/ * https://jzhao.xyz/thoughts/Operational-Transform * Category:Algorithm”
2024年6月26日 (星期三)
- 10:042024年6月26日 (三) 10:04 差异 历史 −2 Rust iter and into iter 无编辑摘要 当前
- 10:042024年6月26日 (三) 10:04 差异 历史 +733 新 Rust iter and into iter 创建页面,内容为“* iter() iterates over the items by reference * iter_mut() iterates over the items, giving a mutable reference to each item * into_iter() iterates over the items, moving them into the new scope So for x in my_vec { ... } is essentially equivalent to my_vec.into_iter().for_each(|x| ... ) - both move the elements of my_vec into the ... scope. If you just need to look at the data, use iter, if you need to edit/mutate it, use iter_mut, and if you need to give it…”
- 02:482024年6月26日 (三) 02:48 差异 历史 +172 Build LibreOffice 无编辑摘要 当前
- 02:392024年6月26日 (三) 02:39 差异 历史 +83 Build LibreOffice 无编辑摘要
- 02:332024年6月26日 (三) 02:33 差异 历史 +378 Build LibreOffice 无编辑摘要
2024年6月25日 (星期二)
- 10:222024年6月25日 (二) 10:22 差异 历史 +24 Build LibreOffice 无编辑摘要
- 10:212024年6月25日 (二) 10:21 差异 历史 +447 Build LibreOffice 无编辑摘要
- 10:192024年6月25日 (二) 10:19 差异 历史 +489 新 Build LibreOffice 创建页面,内容为“Prepare dependencies:<ref>https://wiki.documentfoundation.org/Development/lode</ref> <syntaxhighlight lang="bash"> git clone https://gerrit.libreoffice.org/lode cd lode ./setup ~/.zshrc export LODE_HOME=$HOME/lode export PATH="${LODE_HOME}/opt/bin:${PATH}" </syntaxhighlight> Build core:<ref>https://wiki.documentfoundation.org/Development/GenericBuildingHints</ref> <syntaxhighlight lang="bash"> git clone https://github.com/LibreOffice/core.git cd core ./autog…”
2024年6月24日 (星期一)
- 09:572024年6月24日 (一) 09:57 差异 历史 +91 Install Collabora Office 无编辑摘要 当前
- 09:502024年6月24日 (一) 09:50 差异 历史 +130 Install Collabora Office 无编辑摘要
- 09:312024年6月24日 (一) 09:31 差异 历史 0 新 文件:Owncloud.png 无编辑摘要 当前
- 09:312024年6月24日 (一) 09:31 差异 历史 +292 新 Install Collabora Office 创建页面,内容为“<ref>https://www.collaboraoffice.com/code/quick-tryout-owncloud-docker/</ref> <syntaxhighlight lang="bash"> docker run -d -p 8000:80 owncloud </syntaxhighlight> Then, visit https://localhost:8000 to configure. 600px <syntaxhighlight lang="bash"> </syntaxhighlight>”
2024年6月22日 (星期六)
- 14:102024年6月22日 (六) 14:10 差异 历史 +386 Build onlyoffice →Linux build 当前
- 13:352024年6月22日 (六) 13:35 差异 历史 +72 Build onlyoffice →Linux build
2024年6月21日 (星期五)
- 15:192024年6月21日 (五) 15:19 差异 历史 +501 Build onlyoffice →Linux build
- 14:352024年6月21日 (五) 14:35 差异 历史 +2,147 Build onlyoffice →Linux build
- 08:582024年6月21日 (五) 08:58 差异 历史 +126 Build onlyoffice →Linux build
- 08:002024年6月21日 (五) 08:00 差异 历史 +517 Build onlyoffice 无编辑摘要
- 06:132024年6月21日 (五) 06:13 差异 历史 +171 Build onlyoffice →Linux build
- 06:042024年6月21日 (五) 06:04 差异 历史 +2,157 Build onlyoffice 无编辑摘要
- 06:022024年6月21日 (五) 06:02 差异 历史 +414 Build onlyoffice 无编辑摘要