- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 617 for msg (0.01 seconds)
-
internal/grid/msg.go
Created: 2026-04-05 19:28 - Last Modified: 2024-07-25 21:07 - 7.6K bytes - Click Count (0) -
cmd/server-startup-msg.go
Daryl White <******@****.***> 1755022836 -0400
Created: 2026-04-05 19:28 - Last Modified: 2025-08-12 18:20 - 6.2K bytes - Click Count (0) -
internal/logger/console.go
msg = "%s" } console.quiet(msg+"\n", args...) default: if len(msg) != 0 && len(args) == 0 { args = append(args, msg) msg = "%s" } console.pretty(msg+"\n", args...) } } // Fatal prints only fatal error message with no stack trace // it will be called for input validation failures func Fatal(err error, msg string, data ...any) { fatal(err, msg, data...) }
Created: 2026-04-05 19:28 - Last Modified: 2025-08-29 02:39 - 7.2K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jStdoutLogger.java
Created: 2026-04-05 03:35 - Last Modified: 2025-06-06 14:28 - 6.2K bytes - Click Count (0) -
tests/callbacks_test.go
if ok, msg := assertCallbacks(createCallback, []string{"c3", "c1", "c2", "c4"}); !ok { t.Errorf("callbacks tests failed, got %v", msg) } // plugin 3 createCallback.Before("*").Register("plugin_3_fn1", c5) if ok, msg := assertCallbacks(createCallback, []string{"c5", "c3", "c1", "c2", "c4"}); !ok { t.Errorf("callbacks tests failed, got %v", msg) } createCallback.After("*").Register("plugin_3_fn2", c6)
Created: 2026-04-05 09:35 - Last Modified: 2024-03-26 03:33 - 7.2K bytes - Click Count (0) -
internal/grid/muxserver.go
} func newMuxStateless(ctx context.Context, msg message, c *Connection, handler StatelessHandler) *muxServer { var cancel context.CancelFunc ctx = setCaller(ctx, c.remote) if msg.DeadlineMS > 0 { ctx, cancel = context.WithTimeout(ctx, time.Duration(msg.DeadlineMS)*time.Millisecond) } else { ctx, cancel = context.WithCancel(ctx) } m := muxServer{ ID: msg.MuxID, RecvSeq: msg.Seq + 1, SendSeq: msg.Seq,
Created: 2026-04-05 19:28 - Last Modified: 2025-05-27 15:19 - 9.7K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbAuthExceptionTest.java
@DisplayName("String ctor: preserves message; default unsuccessful status") void messageConstructor_handlesNullAndEmpty(String msg) { // Act SmbAuthException ex = new SmbAuthException(msg); // Assert assertEquals(msg, ex.getMessage()); assertEquals(NtStatus.NT_STATUS_UNSUCCESSFUL, ex.getNtStatus(), "default status must be unsuccessful"); assertNull(ex.getCause());Created: 2026-04-05 00:10 - Last Modified: 2025-08-14 05:31 - 4.3K bytes - Click Count (0) -
src/main/java/jcifs/smb/SMBSignatureValidationException.java
* Constructs an SMB signature validation exception with message and cause. * * @param msg the detail message describing the validation failure * @param rootCause the underlying cause of the validation failure */ public SMBSignatureValidationException(final String msg, final Throwable rootCause) { super(msg, rootCause); } /**Created: 2026-04-05 00:10 - Last Modified: 2025-08-16 01:32 - 1.9K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComLogoffAndXTest.java
SmbComLogoffAndX msg = new SmbComLogoffAndX(null); assertEquals(0, msg.readBytesWireFormat(new byte[15], index)); assertEquals(0, msg.readBytesWireFormat(null, index)); } @Test @DisplayName("toString formats correctly") void toStringFormatsCorrectly() { SmbComLogoffAndX msg = new SmbComLogoffAndX(null); String s = msg.toString();
Created: 2026-04-05 00:10 - Last Modified: 2025-08-14 05:31 - 4.8K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/DcerpcException.java
/** * Constructs a DcerpcException with the specified message * * @param msg * the error message */ public DcerpcException(final String msg) { super(msg); } /** * Constructs a DcerpcException with the specified message and root cause * * @param msg * the error message * @param rootCauseCreated: 2026-04-05 00:10 - Last Modified: 2025-08-16 01:32 - 2.9K bytes - Click Count (0)