当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript textBufferAutoTestUtils.getRandomInt函数代码示例

本文整理汇总了TypeScript中vs/editor/test/common/model/linesTextBuffer/textBufferAutoTestUtils.getRandomInt函数的典型用法代码示例。如果您正苦于以下问题:TypeScript getRandomInt函数的具体用法?TypeScript getRandomInt怎么用?TypeScript getRandomInt使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了getRandomInt函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: generateRandomChunks

function generateRandomChunks(file: string): string[] {
	let result: string[] = [];
	let cnt = getRandomInt(1, 20);

	let maxOffset = file.length;

	while (cnt > 0 && maxOffset > 0) {

		let offset = getRandomInt(0, maxOffset);
		result.unshift(file.substring(offset, maxOffset));
		// let length = getRandomInt(0, maxOffset - offset);
		// let text = generateFile(true);

		// result.push({
		// 	offset: offset,
		// 	length: length,
		// 	text: text
		// });

		maxOffset = offset;
		cnt--;
	}
	if (maxOffset !== 0) {
		result.unshift(file.substring(0, maxOffset));
	}
	return result;
}
开发者ID:JarnoNijboer,项目名称:vscode,代码行数:27,代码来源:linesTextBufferBuilderAuto.test.ts

示例2: generateRandomFile

function generateRandomFile(): string {
	let lineCount = getRandomInt(1, 10);
	let mixedEOLSequence = getRandomInt(1, 2) === 1 ? true : false;
	let fixedEOL = getRandomEOLSequence();
	let lines: string[] = [];
	for (let i = 0; i < lineCount; i++) {
		if (i !== 0) {
			if (mixedEOLSequence) {
				lines.push(getRandomEOLSequence());
			} else {
				lines.push(fixedEOL);
			}
		}
		lines.push(getRandomString(0, 10));

	}
	return lines.join('');
}
开发者ID:JarnoNijboer,项目名称:vscode,代码行数:18,代码来源:linesTextBufferBuilderAuto.test.ts

示例3: testRandomFile

function testRandomFile(file: string): boolean {
	let tests = getRandomInt(5, 10);
	for (let i = 0; i < tests; i++) {
		let chunks = generateRandomChunks(file);
		try {
			testModelBuilder(chunks);
		} catch (err) {
			console.log(err);
			console.log(JSON.stringify(chunks));
			return false;
		}
	}
	return true;
}
开发者ID:JarnoNijboer,项目名称:vscode,代码行数:14,代码来源:linesTextBufferBuilderAuto.test.ts

示例4: getRandomInt

			fn: (textBuffer) => {
				for (let i = 0; i < 10; i++) {
					let minLine = 1;
					let maxLine = textBuffer.getLineCount();
					let startLine = getRandomInt(minLine, Math.max(minLine, maxLine - 100));
					let endLine = Math.min(maxLine, startLine + 100);
					for (let j = startLine; j < endLine; j++) {
						let str = textBuffer.getLineContent(j + 1);
						let firstChar = str.charCodeAt(0);
						let lastChar = str.charCodeAt(str.length - 1);
						firstChar = firstChar - lastChar;
						lastChar = firstChar + lastChar;
						firstChar = lastChar - firstChar;
					}
				}
			}
开发者ID:AllureFer,项目名称:vscode,代码行数:16,代码来源:operations.benchmark.ts


注:本文中的vs/editor/test/common/model/linesTextBuffer/textBufferAutoTestUtils.getRandomInt函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。