forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroups.ts
More file actions
101 lines (86 loc) · 3.17 KB
/
groups.ts
File metadata and controls
101 lines (86 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
export const LSControl = 'LS - control';
export const LSEnabled = 'LS - enabled';
// Experiment to check whether to always display the test explorer.
export enum AlwaysDisplayTestExplorerGroups {
control = 'AlwaysDisplayTestExplorer - control',
experiment = 'AlwaysDisplayTestExplorer - experiment'
}
// Experiment to check whether to show "Extension Survey prompt" or not.
export enum ShowExtensionSurveyPrompt {
control = 'ShowExtensionSurveyPrompt - control',
enabled = 'ShowExtensionSurveyPrompt - enabled'
}
// Experiment to check whether the extension should use the new VS Code debug adapter API.
export enum DebugAdapterDescriptorFactory {
control = 'DebugAdapterFactory - control',
experiment = 'DebugAdapterFactory - experiment'
}
// Experiment to check whether the ptvsd launcher should use pre-installed ptvsd wheels for debugging.
export enum DebugAdapterNewPtvsd {
control = 'PtvsdWheels37 - control',
experiment = 'PtvsdWheels37 - experiment'
}
// Experiment to check whether to enable re-load for web apps while debugging.
export enum WebAppReload {
control = 'Reload - control',
experiment = 'Reload - experiment'
}
// Experiment to use a local ZMQ kernel connection as opposed to starting a Jupyter server locally
export enum LocalZMQKernel {
control = 'LocalZMQKernel - control',
experiment = 'LocalZMQKernel - experiment'
}
// Experiment to use VSC Notebook Implementation
export enum NativeNotebook {
control = 'NativeNotebook - control',
experiment = 'NativeNotebook - experiment'
}
// Experiment for supporting run by line in data science notebooks
export enum RunByLine {
control = 'RunByLine - control',
experiment = 'RunByLine - experiment'
}
/**
* Experiment to check whether to to use a terminal to generate the environment variables of activated environments.
*
* @export
* @enum {number}
*/
export enum UseTerminalToGetActivatedEnvVars {
control = 'UseTerminalToGetActivatedEnvVars - control',
experiment = 'UseTerminalToGetActivatedEnvVars - experiment'
}
// Dummy experiment added to validate metrics of A/B testing
export enum ValidateABTesting {
control = 'AA_testing - control',
experiment = 'AA_testing - experiment'
}
// Collect language server request timings.
export enum CollectLSRequestTiming {
control = 'CollectLSRequestTiming - control',
experiment = 'CollectLSRequestTiming - experiment'
}
// Collect Node language server request timings.
export enum CollectNodeLSRequestTiming {
control = 'CollectNodeLSRequestTiming - control',
experiment = 'CollectNodeLSRequestTiming - experiment'
}
// Determine if ipywidgets is enabled or not
export enum EnableIPyWidgets {
control = 'EnableIPyWidgets - control',
experiment = 'EnableIPyWidgets - experiment'
}
/*
* Experiment to check whether the extension should deprecate `python.pythonPath` setting
*/
export enum DeprecatePythonPath {
control = 'DeprecatePythonPath - control',
experiment = 'DeprecatePythonPath - experiment'
}
/*
* Experiment to turn on custom editor API support.
*/
export enum CustomEditorSupport {
control = 'CustomEditorSupport - control',
experiment = 'CustomEditorSupport - experiment'
}