- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,647 for MESSAGE (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java
* * @param message the message to display * @return the password entered by the user * @throws PrompterException if an exception occurs */ @Nonnull String promptForPassword(@Nullable String message) throws PrompterException; /** * Displays a message to the user. * * @param message the message to displayRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
WitnessNotificationMessage message = new WitnessNotificationMessage(); // Message type int messageType = buf.dec_ndr_long(); message.setType(messageType); // Message length int messageLength = buf.dec_ndr_long(); message.setLength(messageLength); // Based on message type, decode specific data switch (messageType) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java
super(message); } /** * Create exception with cause * * @param message error message * @param cause underlying cause */ public NoAvailableChannelException(String message, Throwable cause) { super(message, cause); } }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
// When Type2Message message = new Type2Message(mockContext, customFlags, TEST_CHALLENGE, TEST_TARGET); // Then assertNotNull(message); assertEquals(customFlags, message.getFlags()); assertArrayEquals(TEST_CHALLENGE, message.getChallenge()); assertEquals(TEST_TARGET, message.getTarget()); assertNotNull(message.getTargetInformation()); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 38.9K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/MessageTest.java
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; class MessageTest { private Message message; @BeforeEach void setUp() { // Create an anonymous implementation of the Message interface for testing message = new Message() { private boolean retainPayload = false; private byte[] rawPayload; @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java
this(plugin, message, (Throwable) cause); } /** * Constructor. * * @deprecated Left for binary compatibility. */ @Deprecated public PluginManagerException(Plugin plugin, String message, ComponentRepositoryException cause) { this(plugin, message, (Throwable) cause); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/RequestTimeoutExceptionTest.java
assertNull(exception.getMessage(), "Message should be null for no-arg constructor"); assertNull(exception.getCause(), "Cause should be null for no-arg constructor"); } @Test void testMessageConstructor() { // Test the constructor with a message argument String message = "Test message"; RequestTimeoutException exception = new RequestTimeoutException(message);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/resources/fess_message_id.properties
constraints.ScriptAssert.message = Ekspresi script "{script}" tidak benar. constraints.URL.message = {item} bukan URL yang valid. constraints.Required.message = {item} wajib diisi. constraints.TypeInteger.message = {item} harus berupa angka. constraints.TypeLong.message = {item} harus berupa angka. constraints.TypeFloat.message = {item} harus berupa angka. constraints.TypeDouble.message = {item} harus berupa angka.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 07 14:12:58 UTC 2025 - 11.8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoExecutionException.java
*/ public MojoExecutionException(String message, Throwable cause) { super(message, cause); } /** * Construct a new <code>MojoExecutionException</code> exception providing a <code>message</code>. * * @param message */ public MojoExecutionException(String message) { super(message); } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginLoaderException.java
public PluginLoaderException(Plugin plugin, String message) { super(message); pluginKey = plugin.getKey(); } public PluginLoaderException(String message) { super(message); } public PluginLoaderException(String message, Throwable cause) { super(message, cause); } public PluginLoaderException(ReportPlugin plugin, String message, Throwable cause) { super(message, cause);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0)