- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 95 for setMdc (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/logging/LoggingExecutionListener.java
setMdc(event); delegate.projectDiscoveryStarted(event); } @Override public void sessionStarted(ExecutionEvent event) { setMdc(event); buildEventListener.sessionStarted(event); delegate.sessionStarted(event); } @Override public void sessionEnded(ExecutionEvent event) { setMdc(event); delegate.sessionEnded(event);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/logging/Slf4jLogger.java
logger.warn(message); } @Override public void warn(String message, Throwable throwable) { setMdc(); logger.warn(message, throwable); } @Override public boolean isWarnEnabled() { return logger.isWarnEnabled(); } @Override public void error(String message) { setMdc(); logger.error(message); } @Override
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Nov 08 08:49:11 GMT 2024 - 3.8K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/profiles/manager/DefaultProfileManagerTest.java
Profile notActivated = new Profile(); notActivated.setId("notActivated"); Activation nonActivation = new Activation(); nonActivation.setJdk("19.2"); notActivated.setActivation(nonActivation); Profile defaultActivated = new Profile(); defaultActivated.setId("defaultActivated"); Activation defaultActivation = new Activation();
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 6.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java
activation.setActiveByDefault(profileActivation.isActiveByDefault()); activation.setJdk(profileActivation.getJdk()); org.apache.maven.profiles.ActivationProperty profileProp = profileActivation.getProperty(); if (profileProp != null) { ActivationProperty prop = new ActivationProperty();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.8K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/ppc64_p10.s
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Mar 23 20:52:57 GMT 2023 - 14.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
String org, val; // Jdk org = activation.getJdk(); val = interpolate(org); if (org != val) { activation.setJdk(val); } // OS visit(activation.getOs()); // Property visit(activation.getProperty()); // FileCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 43.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
} @Test public void test_equals_comprehensive() { PrunedTag tag1 = new PrunedTag("div"); tag1.setId("test"); tag1.setCss("highlight"); tag1.setAttr("data-value", "123"); PrunedTag tag2 = new PrunedTag("div"); tag2.setId("test"); tag2.setCss("highlight"); tag2.setAttr("data-value", "123"); assertTrue(tag1.equals(tag2));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
@Override public OptionalEntity<WebConfig> getWebConfig(final String id) { final WebConfig webConfig = new WebConfig(); webConfig.setId(id); if (id.endsWith("P")) { webConfig.setConfigParameter("config.pipeline=wp"); } return OptionalEntity.of(webConfig); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 35.3K bytes - Click Count (0) -
src/test/java/jcifs/DfsResolverTest.java
assertFalse(dfsResolver.isTrustedDomain(mockContext, "anyDomain")); } // Test for getDc method @Test void testGetDc_DfsDisabled() throws CIFSException { when(mockConfig.isDfsDisabled()).thenReturn(true); assertNull(dfsResolver.getDc(mockContext, "anyDomain")); } @Test void testGetDc_Success() throws CIFSException, IOException {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.5K bytes - Click Count (0) -
src/test/java/jcifs/smb/DfsImplTest.java
assertFalse(dfsImpl.isTrustedDomain(mockContext, "anydomain.com")); } // Tests for getDc @Test void testGetDc_DfsDisabled() throws SmbAuthException { // Scenario: DFS is disabled. when(mockConfig.isDfsDisabled()).thenReturn(true); assertNull(dfsImpl.getDc(mockContext, "anydomain.com")); } @Test void testGetDc_ConnectionFails() throws SmbAuthException {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.5K bytes - Click Count (0)