Replace uses of 'probe' with 'query' (#6495)

This commit is contained in:
Colen Garoutte-Carson
2020-11-10 18:57:09 -08:00
committed by GitHub
parent 55421659dc
commit c026a827c6
2 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -17,7 +17,7 @@
* Tasks: Configure Task
* Tasks: Run Build Task
* C/C++: Build and debug active file.
* Add logging around compiler probing, and the "C/C++ Configuration Warnings" output channel. [#5259](https://github.com/microsoft/vscode-cpptools/issues/5259)
* Add logging around compiler querying, and the "C/C++ Configuration Warnings" output channel. [#5259](https://github.com/microsoft/vscode-cpptools/issues/5259)
* Add compile commands info to Log Diagnostics. [#5761](https://github.com/microsoft/vscode-cpptools/issues/5761)
* Add `intelliSenseUpdateDelay` setting. [#6142](https://github.com/microsoft/vscode-cpptools/issues/6142)
* YuTengjing (@tjx666) [PR #6344](https://github.com/microsoft/vscode-cpptools/pull/6344)
@@ -110,7 +110,7 @@
* Fix bug with cl.exe flags /FU and /FI not being processed. [#5819](https://github.com/microsoft/vscode-cpptools/issues/5819)
* Fix `cStandard` being set to `c11` instead of `gnu18` with gcc. [#5834](https://github.com/microsoft/vscode-cpptools/issues/5834)
* Fix Doxygen parameterHint comment to display for a parameter name that is followed by colon. [#5836](https://github.com/microsoft/vscode-cpptools/issues/5836)
* Fix compiler probing when relative paths are used in `compile_commands.json`. [#5848](https://github.com/microsoft/vscode-cpptools/issues/5848)
* Fix compiler querying when relative paths are used in `compile_commands.json`. [#5848](https://github.com/microsoft/vscode-cpptools/issues/5848)
* Fix the compile commands compiler not being used if `C_Cpp.default.compilerPath` is set. [#5848](https://github.com/microsoft/vscode-cpptools/issues/5848)
* Fix Doxygen comment to escape markdown characters. [#5904](https://github.com/microsoft/vscode-cpptools/issues/5904)
* Remove keyword completion of C identifiers that are defined in headers and aren't keywords (e.g. `alignas`). [#6022](https://github.com/microsoft/vscode-cpptools/issues/6022)
+13 -13
View File
@@ -187,7 +187,7 @@
"deprecated_label": "Deprecated:",
"exceptions_label": "Exceptions:",
"template_parameters_label": "Template Parameters:",
"compiler_probe_command_line": "Compiler probe command line: {0}",
"compiler_query_command_line": "Compiler query command line: {0}",
"c_compiler_from_compiler_path": "Attempting to get defaults from C compiler in \"compilerPath\" property: '{0}'",
"cpp_compiler_from_compiler_path": "Attempting to get defaults from C++ compiler in \"compilerPath\" property: '{0}'",
"c_compiler_from_compile_commands": "Attempting to get defaults from C compiler in compile_commands.json file: '{0}'",
@@ -198,26 +198,26 @@
"cpp_std_version_changed": "For C++ source files, the cppStandard was changed from \"{0}\" to \"{1}\".",
"c_intellisense_mode_and_std_version_changed": "For C source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" and cStandard was changed from \"{2}\" to \"{3}\".",
"cpp_intellisense_mode_and_std_version_changed": "For C++ source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" and cppStandard changed from \"{2}\" to \"{3}\".",
"c_intellisense_mode_changed_with_path": "For C source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" based on compiler args and probing compilerPath: \"{2}\"",
"cpp_intellisense_mode_changed_with_path": "For C++ source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" based on compiler args and probing compilerPath: \"{2}\"",
"c_std_version_changed_with_path": "For C source files, the cStandard was changed from \"{0}\" to \"{1}\" based on compiler args and probing compilerPath: \"{2}\"",
"cpp_std_version_changed_with_path": "For C++ source files, the cppStandard was changed from \"{0}\" to \"{1}\" based on compiler args and probing compilerPath: \"{2}\"",
"c_intellisense_mode_and_std_version_changed_with_path": "For C source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" and cStandard was changed from \"{2}\" to \"{3}\" based on compiler args and probing compilerPath: \"{4}\"",
"cpp_intellisense_mode_and_std_version_changed_with_path": "For C++ source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" and cppStandard changed from \"{2}\" to \"{3}\" based on compiler args and probing compilerPath: \"{4}\"",
"c_intellisense_mode_changed_with_path": "For C source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" based on compiler args and querying compilerPath: \"{2}\"",
"cpp_intellisense_mode_changed_with_path": "For C++ source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" based on compiler args and querying compilerPath: \"{2}\"",
"c_std_version_changed_with_path": "For C source files, the cStandard was changed from \"{0}\" to \"{1}\" based on compiler args and querying compilerPath: \"{2}\"",
"cpp_std_version_changed_with_path": "For C++ source files, the cppStandard was changed from \"{0}\" to \"{1}\" based on compiler args and querying compilerPath: \"{2}\"",
"c_intellisense_mode_and_std_version_changed_with_path": "For C source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" and cStandard was changed from \"{2}\" to \"{3}\" based on compiler args and querying compilerPath: \"{4}\"",
"cpp_intellisense_mode_and_std_version_changed_with_path": "For C++ source files, IntelliSenseMode was changed from \"{0}\" to \"{1}\" and cppStandard changed from \"{2}\" to \"{3}\" based on compiler args and querying compilerPath: \"{4}\"",
"compiler_path_changed": "Unable to resolve configuration with compilerPath \"{0}\". Using \"{1}\" instead.",
"compiler_path_invalid": "Unable to resolve configuration with compilerPath: \"{0}\"",
"compiler_path_empty": "Skipping probe of compiler due to explicitly empty compilerPath",
"compiler_path_empty": "Skipping query of compiler due to explicitly empty compilerPath",
"msvc_intellisense_specified": "MSVC intelliSenseMode specified. Configuring for compiler cl.exe.",
"unable_to_configure_cl_exe": "Unable to configure for compiler cl.exe.",
"probing_compiler_default_target": "Probing compiler's default target using command line: \"{0}\" {1}",
"querying_compiler_default_target": "Querying compiler's default target using command line: \"{0}\" {1}",
"compiler_default_target": "Compiler returned default target value: {0}",
"c_probing_compiler_default_standard": "Probing compiler for default C language standard using command line: {0}",
"cpp_probing_compiler_default_standard": "Probing compiler for default C++ language standard using command line: {0}",
"c_querying_compiler_default_standard": "Querying compiler for default C language standard using command line: {0}",
"cpp_querying_compiler_default_standard": "Querying compiler for default C++ language standard using command line: {0}",
"detected_language_standard_version": "Detected language standard version: {0}",
"unhandled_default_target_detected": "Unhandled default compiler target value detected: {0}",
"unhandled_target_arg_detected": "Unhandled target argument value detected: {0}",
"memory_limit_shutting_down_intellisense": "Shutting down IntelliSense server: {0}. Memory usage is {1} MB and has exceeded the {2} MB limit.",
"failed_to_probe_for_standard_version": "Failed to probe compilerPath \"{0}\" for default standard versions. Probing is disabled for this compiler.",
"unrecognized_language_standard_version": "Compiler probe returned an unrecognized language standard version. The latest supported version will be used instead."
"failed_to_query_for_standard_version": "Failed to query compiler at path \"{0}\" for default standard versions. Compiler querying is disabled for this compiler.",
"unrecognized_language_standard_version": "Compiler query returned an unrecognized language standard version. The latest supported version will be used instead."
}