Copilot

Results 4682 issues of Copilot

- [x] Create E4 model fragment (fragment.e4xmi) - [x] Register fragment in plugin.xml - [x] Migrate commands to E4 model fragment - [x] Convert handler classes to use E4 dependency...

## Overview **[EXPERIMENTAL]** This PR migrates `Win32Natives.java` from using the external JNA (Java Native Access) library to the Foreign Function & Memory (FFM) API that is built into Java 22+....

## Overview This PR adds support for `enabledWhen` core expressions to E4 handlers, bringing feature parity with E3 handlers and simplifying migration from E3 to E4. Previously, E4 handlers could...

## Problem The "Case Studies" section in `docs/Rich_Client_Platform.md` contained a broken link to `https://www.eclipse.org/community/rcpcp.php`, which returns a 404 error. This page appears to have been removed or relocated on the...

## Issue Summary This PR documents the investigation of issue #1169: "[e4][editor] refactoring produces garbage in fragment.e4xmi" ## Investigation Findings After extensive investigation of the eclipse.platform.ui repository, I've determined that...

## Summary This PR adds a new public API method to `ContentProposalAdapter` that allows callers to control whether a beep sound is emitted when programmatically opening the proposal popup with...

## Parallel Tool Execution for ReAct This PR adds support for parallel tool execution in the ReAct module, allowing the LLM to request multiple tool calls in a single turn...

## 📝 Changes Description `dspy.asyncify` returned `Callable[[Any, Any], Awaitable[Any]]`, incorrectly specifying exactly 2 positional arguments. Pyright raised `reportCallIssue` errors on valid calls: ```python module = MyModule() async_module = dspy.asyncify(module) result...

## Problem When using DSPy's streaming feature (`dspy.streamify()`) with async tools (like MCP tools or ReAct tool calls), the stream would freeze indefinitely after a tool completed execution. The stream...

- [x] Rebase onto master branch - [x] Convert tests from Jest to Vitest - [x] Update test mocking syntax (jest.mock → vi.mock) - [x] Update assertions (jest.clearAllMocks → vi.clearAllMocks)...