- Sort Score
- Result 10 results
- Languages All
Results 441 - 450 of 1,470 for message_0 (0.18 sec)
-
.github/pull_request_template.md
where you replace `MNG-XXX` and `SUMMARY` with the appropriate JIRA issue. - [ ] Also format the first line of the commit message like `[MNG-XXX] SUMMARY`. Best practice is to use the JIRA issue title in both the pull request title and in the first line of the commit message. - [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Dec 20 13:14:27 UTC 2022 - 1.9K bytes - Viewed (0) -
internal/grid/msg_gen_test.go
} } func BenchmarkMarshalMsgmessage(b *testing.B) { v := message{} b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { v.MarshalMsg(nil) } } func BenchmarkAppendMsgmessage(b *testing.B) { v := message{} bts := make([]byte, 0, v.Msgsize()) bts, _ = v.MarshalMsg(bts[0:0]) b.SetBytes(int64(len(bts))) b.ReportAllocs()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jul 25 21:07:21 UTC 2024 - 12.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java
* * @return The exception that caused this problem or {@code null} if not applicable. */ Exception getException(); /** * Gets the message that describes this problem. * * @return The message describing this problem, never {@code null}. */ String getMessage(); /** * Gets the severity level of this problem. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
internal/logger/target/testlogger/testlogger.go
fmt.Fprintf(os.Stdout, format+"\n", args...) } } } switch v := entry.(type) { case log.Entry: if v.Trace == nil { logf("%s: %s", v.Level, v.Message) } else { msg := fmt.Sprintf("%s: %+v", v.Level, v.Trace.Message) for i, m := range v.Trace.Source { if i == 0 && strings.Contains(m, "logger.go:") { continue } msg += fmt.Sprintf("\n%s", m) } logf("%s", msg)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 4K bytes - Viewed (0) -
tests/test_tutorial/test_background_tasks/test_tutorial002.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Jul 09 18:06:12 UTC 2020 - 568 bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
import java.io.IOException; import jcifs.CIFSContext; /** * Represents an NTLMSSP Type-1 message. */ public class Type1Message extends NtlmMessage { private String suppliedDomain; private String suppliedWorkstation; /** * Creates a Type-1 message using default values from the current * environment. * * @param tc * context to use
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 02 12:55:08 UTC 2018 - 7.8K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RelocatedArtifact.java
this.extension = (extension != null && !extension.isEmpty()) ? extension : null; this.version = (version != null && !version.isEmpty()) ? version : null; this.message = (message != null && !message.isEmpty()) ? message : null; } @Override public String getGroupId() { if (groupId != null) { return groupId; } else { return artifact.getGroupId();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type2Message.java
} /** * Creates a Type-2 message using default values from the current * environment. */ public Type2Message() { this(getDefaultFlags(), null, null); } /** * Creates a Type-2 message in response to the given Type-1 message * using default values from the current environment. * * @param type1 The Type-1 message which this represents a response to. */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.6K bytes - Viewed (0) -
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/HpackDecodeTestBase.kt
* deduped. * * TODO: See if duped headers should be preserved on decode and verify. */ private fun assertSetEquals( message: String, expected: List<Header>, observed: List<Header>, ) { assertThat(LinkedHashSet(observed), message) .isEqualTo(LinkedHashSet(expected)) } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.2K bytes - Viewed (0) -
tests/test_tutorial/test_background_tasks/test_tutorial002_an_py310.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 631 bytes - Viewed (0)