- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,294 for Messages (0.04 sec)
-
src/main/java/jcifs/smb/PreauthIntegrityService.java
return context; } /** * Updates the preauth integrity hash with a new message. * * @param sessionId the session identifier * @param messageData the message data to include in hash * @throws CIFSException if update fails */ public void updatePreauthHash(String sessionId, byte[] messageData) throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0) -
cmd/listen-notification-handlers.go
mergeCh := make(chan []byte, globalAPIConfig.getRequestsPoolCapacity()*len(globalEndpoints.Hostnames())) localCh := make(chan event.Event, globalAPIConfig.getRequestsPoolCapacity()) // Convert local messages to JSON and send to mergeCh go func() { buf := bytes.NewBuffer(grid.GetByteBuffer()[:0]) enc := json.NewEncoder(buf) tmpEvt := struct{ Records []event.Event }{[]event.Event{{}}} for { select {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/GraphsTest.java
private static final String E44 = "4-4"; private static final int NODE_COUNT = 20; private static final int EDGE_COUNT = 20; // TODO(user): Consider adding both error messages from here and {@link AbstractNetworkTest} // in one class (may be a utility class for error messages). private static final String ERROR_PARALLEL_EDGE = "connected by a different edge"; private static final String ERROR_NEGATIVE_COUNT = "is non-negative";
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 24.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
import jcifs.smb1.dcerpc.ndr.NdrObject; /** * Abstract base class for DCERPC messages. * This class provides common functionality for all DCE/RPC message types in SMB1 protocol. */ public abstract class DcerpcMessage extends NdrObject implements DcerpcConstants { /** * Default constructor for DcerpcMessage. * Initializes the DCE/RPC message structure for SMB1 protocol. */ protected DcerpcMessage() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt
val responseBuilder = Response .Builder() .protocol(statusLine.protocol) .code(statusLine.code) .message(statusLine.message) .headers(headersReader.readHeaders()) return when { expectContinue && statusLine.code == HTTP_CONTINUE -> { null }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 17.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/MIENameTest.java
buf = sup.get(); } // Act + Assert Throwable t = assertThrows(expected, () -> new MIEName(buf)); // MIEName throws IllegalArgumentException without messages, so we don't assert on message presence assertNotNull(t, "Exception should be thrown"); } @Nested @DisplayName("equals, hashCode, toString") class EqualityContract { @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/DosError.java
/* These aren't really used by jCIFS -- the map above is used * to immediately map to NTSTATUS codes. */ /** * Human-readable error messages corresponding to DOS error codes. * Array of descriptive strings for each DOS error condition. */ String[] DOS_ERROR_MESSAGES = { "The operation completed successfully.", "Incorrect function.", "Incorrect function.",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java
*/ @Nonnull InputStream openStream() throws IOException; /** * Returns a human-readable description of where this source came from, * used primarily for error messages and debugging. * <p> * Examples of locations: * <ul> * <li>Absolute file path: {@code /path/to/pom.xml}</li> * <li>Relative file path: {@code ../parent/pom.xml}</li>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 09:46:53 UTC 2025 - 4K bytes - Viewed (0) -
cmd/main.go
Hidden: true, }, cli.StringFlag{ Name: "certs-dir, S", Value: defaultCertsDir.Get(), Usage: "path to certs directory", }, cli.BoolFlag{ Name: "quiet", Usage: "disable startup and info messages", }, cli.BoolFlag{ Name: "anonymous", Usage: "hide sensitive information from logging", }, cli.BoolFlag{ Name: "json", Usage: "output logs in JSON format", },
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Jul 30 22:59:48 UTC 2024 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
ScriptEngine retrieved = scriptEngineFactory.getScriptEngine(" test "); assertNotNull(retrieved); assertEquals(engine, retrieved); } // Test case sensitivity preservation in error messages public void test_getScriptEngine_errorMessagePreservesCase() { try { scriptEngineFactory.getScriptEngine("MyNonExistentEngine"); fail("Should throw ScriptEngineException");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0)