You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+ private static final RequestProcessor RP = new RequestProcessor(NbPacScriptEvaluator.class.getName(), Runtime.getRuntime().availableProcessors(), true, false);
29
28
private final String pacScriptSource;
30
29
31
30
32
-
@@ -213,7 +219,8 @@ public NbPacScriptEvaluator(String pacSourceCocde) throws PacParsingException {
31
+
@@ -213,7 +218,7 @@ public NbPacScriptEvaluator(String pacSourceCocde) throws PacParsingException {
33
32
@Override
34
33
public List<Proxy> findProxyForURL(URI uri) throws PacValidationException {
35
34
36
35
- List<Proxy> jsResultAnalyzed;
37
-
+ AtomicReference<List<Proxy>> resultHolder = new AtomicReference<>(null);
Copy file name to clipboardExpand all lines: vscode/src/test/integration/suite/localisation/extension.test.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ suite("Extension localisation tests", function () {
45
45
assert.ok(matchKeys(enBundlePath,langBundlePath),`Keys of ${DEFAULT_BUNDLE_FILE_NAME} and bundle.l10n.${lang}.json don't match`);
46
46
assert.ok(matchValuesTemplate(enBundlePath,langBundlePath),`Value templates don't match for of the keys of ${DEFAULT_BUNDLE_FILE_NAME} and bundle.l10n.${lang}.json `);
47
47
}
48
-
}).timeout(10000);
48
+
}).timeout(60000);
49
49
50
50
test("Consistency of keys across package.nls.lang.json files for supported languages",async()=>{
assert(checkL10nUsageInFiles(path.join(extension.extensionPath,"out"),ignoredDirEntriesNames,validKeyValues)===0,"Some files have invalid localisation keys used. Check the logs or error messages");
0 commit comments