SHOWING: First 60
#69,753,159textmsgid "Platform"
msgstr "平台"
#: src/guides/reindexing.md:15
msgid "Value"
msgstr ""
#: src/guides/reindexing.md:17
msgid "Linux"
msgstr ""
#: src/guides/reindexing.md:17
msgid "`$XDG_DATA_HOME`/ord or `$HOME`/.local/share/ord"
msgstr ""
#: src/guides/reindexing.md:17
msgid "/home/alice/.local/share/ord"
msgstr ""
#: src/guides/reindexing.md:18
msgid "macOS"
msgstr ""
#: src/guides/reindexing.md:18
msgid "`$HOME`/Library/Application Support/ord"
msgstr ""
#: src/guides/reindexing.md:18
msgid "/Users/Alice/Library/Application Support/ord"
msgstr ""
#: src/guides/reindexing.md:19
msgid "Windows"
msgstr ""
#: src/guides/reindexing.md:19
msgid "`{FOLDERID_RoamingAppData}`\\\\ord"
msgstr ""
#: src/guides/reindexing.md:19
msgid "C:\\Users\\Alice\\AppData\\Roaming\\ord"
msgstr ""
#: src/guides/reindexing.md:21
msgid ""
"So to delete the database and reindex on MacOS you would have to run the "
"following commands in the terminal:"
msgstr "因此,要在 MacOS 上删除数据库并重新索引,您必须在终端中执行以下命令:"
#: src/guides/reindexing.md:24
#44,982,958text );
assert_eq!(
Pile {
amount: 0,
divisibility: 1,
symbol: None,
}
.to_string(),
"0"
);
assert_eq!(
Pile {
amount: 1,
divisibility: 1,
symbol: None,
}
.to_string(),
"0.1"
);
assert_eq!(
Pile {
amount: 1,
divisibility: 2,
symbol: None,
}
.to_string(),
"0.01"
);
assert_eq!(
Pile {
amount: 10,
divisibility: 2,
symbol: None,
}
.to_string(),
"0.1"
);
assert_eq!(
Pile {
amount: 1100,
divisibility: 3,
symbol: None,
}
.to_string(),
"1.1"
);
assert_eq!(
Pile {
amount: 100,
divisibility: 2,
symbol: None,
}
.to_string(),
"1"
);
assert_eq!(
Pile {
amount: 101,
divisibility: 2,
symbol: None,
}
.to_string(),
"1.01"
);
assert_eq!(
Pile {
#44,981,156text