- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 54 for on_event (0.51 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
protected int doExecute(MavenContext context, MavenExecutionRequest request) throws Exception { context.eventSpyDispatcher.onEvent(request); MavenExecutionResult result; try { result = context.maven.execute(request); context.eventSpyDispatcher.onEvent(result); } finally { context.eventSpyDispatcher.close(); } if (result.hasExceptions()) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 11 17:20:46 GMT 2025 - 28.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/manager/LegacyArtifactHandlerManager.java
@Inject public LegacyArtifactHandlerManager(Map<String, ArtifactHandler> artifactHandlers) { this.artifactHandlers = requireNonNull(artifactHandlers); } @Override public void onEvent(Object event) { if (event instanceof ExecutionEvent executionEvent) { if (executionEvent.getType() == ExecutionEvent.Type.SessionEnded) { allHandlers.clear(); } }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 2.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java
new DefaultDependencyResolutionRequest(project, session.getRepositorySession()); request.setResolutionFilter(resolutionFilter); eventSpyDispatcher.onEvent(request); result = dependenciesResolver.resolve(request); } catch (DependencyResolutionException e) { result = e.getResult(); /*
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 15.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultTypeRegistry.java
this.usedTypes = new ConcurrentHashMap<>(); this.manager = requireNonNull(manager, "artifactHandlerManager cannot be null"); } @Override public void onEvent(Object event) { if (event instanceof ExecutionEvent executionEvent) { if (executionEvent.getType() == ExecutionEvent.Type.SessionEnded) { usedTypes.clear(); } }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed May 14 04:47:58 GMT 2025 - 4K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt
cleanCheckout: Boolean = true, ) : BuildType() { init { vcs { root(AbsoluteId(VersionedSettingsBranch.fromDslContext().gradlePromoteVcsRootId())) checkoutMode = CheckoutMode.ON_AGENT this.cleanCheckout = cleanCheckout showDependenciesChanges = true } requirements { requiresOs(Os.LINUX) requiresNotEc2Agent() }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Oct 14 10:56:29 GMT 2025 - 2.3K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt
name = "GitHub Merge Queue Check Pass" type = Type.COMPOSITE vcs { root(AbsoluteId(VersionedSettingsBranch.fromDslContext().vcsRootId())) checkoutMode = CheckoutMode.ON_AGENT } features { enablePullRequestFeature() publishBuildStatusToGithub(model) } if (!VersionedSettingsBranch.fromDslContext().isExperimental) {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Oct 14 16:28:05 GMT 2025 - 1.7K bytes - Click Count (0) -
okhttp-sse/src/test/java/okhttp3/sse/internal/ServerSentEventIteratorTest.kt
assertThat(callbacks).isEmpty() } private fun consumeEvents(source: String) { val callback: ServerSentEventReader.Callback = object : ServerSentEventReader.Callback { override fun onEvent( id: String?, type: String?, data: String, ) { callbacks.add(Event(id, type, data)) } override fun onRetryChange(timeMs: Long) {
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Mon Jan 08 01:13:22 GMT 2024 - 6.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/monitor/event/EventMonitor.java
* under the License. */ package org.apache.maven.monitor.event; /** */ @Deprecated public interface EventMonitor { void startEvent(String eventName, String target, long timestamp); void endEvent(String eventName, String target, long timestamp); void errorEvent(String eventName, String target, long timestamp, Throwable cause);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.1K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
orderedEventSpyDispatcherMock .verify(eventSpyDispatcherMock, times(1)) .onEvent(any(ToolchainsBuildingRequest.class)); orderedEventSpyDispatcherMock .verify(eventSpyDispatcherMock, times(1)) .onEvent(any(ToolchainsBuildingResult.class)); } @Test void resumeFromSelectorIsSuggestedWithoutGroupId() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 30.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java
VERBOSE // at end, list of plugin GAVs along with detailed report of ANY validation issues } private final Logger logger = LoggerFactory.getLogger(getClass()); @Override public void onEvent(Object event) { if (event instanceof ExecutionEvent executionEvent) { if (executionEvent.getType() == ExecutionEvent.Type.SessionStarted) { RepositorySystemSession repositorySystemSession =Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:32 GMT 2025 - 17.5K bytes - Click Count (0)