- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 1,305 for MESSAGE (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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 displayCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 17 15:52:15 GMT 2023 - 3.5K bytes - Click Count (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) {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 16.4K bytes - Click Count (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); } }
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 8.2K bytes - Click Count (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()); }Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 38.9K bytes - Click Count (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; @OverrideCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 2.4K bytes - Click Count (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); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.1K bytes - Click Count (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);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 2.4K bytes - Click Count (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.
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 07 14:12:58 GMT 2025 - 11.8K bytes - Click Count (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); } /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.8K bytes - Click Count (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);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.6K bytes - Click Count (0)