- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 49 for notifiers (0.05 sec)
-
impl/maven-core/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom
<url>http://jira.codehaus.org/browse/MNG</url> </issueManagement> <ciManagement> <system>continuum</system> <notifiers> <notifier> <configuration> <address>******@****.***</address> </configuration> </notifier> </notifiers> </ciManagement> <mailingLists> <mailingList> <name>Maven User List</name>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
assertEquals(1, ((List<?>) pom.getValue("ciManagement/notifiers")).size()); assertEquals("irc", pom.getValue("ciManagement/notifiers[1]/type")); assertEquals("ci@", pom.getValue("ciManagement/notifiers[1]/address")); assertEquals(Boolean.TRUE, pom.getValue("ciManagement/notifiers[1]/sendOnError")); assertEquals(Boolean.FALSE, pom.getValue("ciManagement/notifiers[1]/sendOnFailure"));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 94.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 43.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
/** * Initiates shutdown of the job executor. * This method notifies the shutdown listener to perform cleanup operations. */ public void shutdown() { shutdownListener.onShutdown(); } /** * Adds a shutdown listener to be notified when the executor is shutting down. * * @param listener the shutdown listener to add */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
</field> <field> <name>notifiers</name> <version>4.0.0+</version> <description>Configuration for notifying developers/users when a build is unsuccessful, including user information and notification mode.</description> <association> <multiplicity>*</multiplicity> <type>Notifier</type> </association> </field>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 26 03:07:35 UTC 2025 - 133.3K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/NotifierTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code Notifier}. * */ class NotifierTest { @Test void testHashCodeNullSafe() { new Notifier().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Notifier().equals(null)); new Notifier().equals(new Notifier()); } @Test void testEqualsIdentity() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 1.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixTesting.jvm.kt
actual class PublicSuffixTestRunner( klass: Class<*>, ) : Runner() { private val delegate = JUnit4(klass) override fun getDescription() = delegate.description override fun run(notifier: RunNotifier?) = delegate.run(notifier) override fun testCount() = delegate.testCount() } actual fun beforePublicSuffixTest() {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri May 23 16:58:05 UTC 2025 - 1.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java
} /** * Initializes the spy. * * @param context The event spy context, never {@code null}. */ void init(Context context) throws Exception; /** * Notifies the spy of some build event/operation. * * @param event The event, never {@code null}. * @see org.apache.maven.api.services.SettingsBuilderRequest * @see org.apache.maven.api.services.SettingsBuilderResultRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Feb 10 15:02:53 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/https/HandlerTest.java
void testClassModifiers() { // When int modifiers = Handler.class.getModifiers(); // Then assertTrue(Modifier.isPublic(modifiers)); assertFalse(Modifier.isAbstract(modifiers)); assertFalse(Modifier.isInterface(modifiers)); } }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java
for (Field field : fields) { int modifiers = field.getModifiers(); assertTrue(Modifier.isPublic(modifiers), "Field " + field.getName() + " should be public"); assertTrue(Modifier.isStatic(modifiers), "Field " + field.getName() + " should be static"); assertTrue(Modifier.isFinal(modifiers), "Field " + field.getName() + " should be final"); } } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.5K bytes - Viewed (0)