提交 c5bf26a6 编写于 作者: A Alex Dima

Tweak file limits based on experiments (#30180)

上级 ce396fd2
......@@ -520,7 +520,11 @@ export enum FileOperationResult {
FILE_INVALID_PATH
}
export const MAX_FILE_SIZE = 50 * 1024 * 1024;
// See https://github.com/Microsoft/vscode/issues/30180
const WIN32_MAX_FILE_SIZE = 300 * 1024 * 1024; // 300 MB
const GENERAL_MAX_FILE_SIZE = 16 * 1024 * 1024 * 1024; // 16 GB
export const MAX_FILE_SIZE = (process.arch === 'ia32' ? WIN32_MAX_FILE_SIZE : GENERAL_MAX_FILE_SIZE);
export const AutoSaveConfiguration = {
OFF: 'off',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册