- Sort Score
- Result 10 results
- Languages All
Results 721 - 730 of 1,014 for forMap (0.08 sec)
-
okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt
fun build(): HandshakeCertificates { val immutableInsecureHosts = insecureHosts.toImmutableList() val heldCertificate = heldCertificate if (heldCertificate != null && heldCertificate.keyPair.private.format == null) { throw KeyStoreException("unable to support unencodable private key") } val keyManager = newKeyManager(null, heldCertificate, *(intermediates ?: emptyArray()))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
* is used internally be jCIFS when parsing SMB URLs. * * @param tc the CIFS context to use * @param userInfo the user information string in the format "domain;user:pass" */ public NtlmPasswordAuthentication(final CIFSContext tc, final String userInfo) { super(userInfo, tc.getConfig().getDefaultDomain(),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
/** * Record a write operation error */ public void recordWriteError() { recordError(); } @Override public String toString() { return String.format( "RdmaStatistics[reads=%d, writes=%d, sends=%d, receives=%d, " + "bytes=%d, errors=%d, errorRate=%.3f, activeConnections=%d, activeMemRegions=%d]",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 10.7K bytes - Viewed (0) -
docs/de/docs/advanced/path-operation-advanced-configuration.md
In diesem Beispiel haben wir kein Pydantic-Modell deklariert. Tatsächlich wird der Requestbody nicht einmal als JSON <abbr title="von einem einfachen Format, wie Bytes, in Python-Objekte konvertieren">geparst</abbr>, sondern direkt als `bytes` gelesen und die Funktion `magic_data_reader ()` wäre dafür verantwortlich, ihn in irgendeiner Weise zu parsen.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 8.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
} catch (ConfigPropertyNotFoundException e) { assertTrue(e.getMessage().contains("non.existent.boolean")); } } // Test getTimeAdjustTimeMillisAsLong with invalid number format public void xtest_getTimeAdjustTimeMillisAsLong_invalidFormat() { FessEnv.SimpleImpl customEnv = new FessEnv.SimpleImpl() { protected Properties prepareProperties() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
if (s.indexOf('.') < 0 && s.toUpperCase(Locale.ROOT).equals(s)) { final String fqdn = s + "." + dom; if (log.isDebugEnabled()) { log.debug(String.format("Applying DFS netbios name hack %s -> %s ", s, fqdn)); } this.server = fqdn; } } @Override public void fixupHost(final String fqdn) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java
assertNotNull(list1); assertNotNull(list2); assertSame(list1, list2); } @Test @DisplayName("Test toString returns expected format") void testToString() { String result = response.toString(); assertNotNull(result); assertTrue(result.startsWith("NtTransQuerySecurityResponse["));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
void testDialectVersionProgression(int dialect) { assertTrue(dialect >= Smb2Constants.SMB2_DIALECT_0202, "Dialect " + String.format("0x%04X", dialect) + " should be >= SMB 2.0.2"); } @Test @DisplayName("Dialects should be in ascending order") void testDialectOrdering() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
context2.close(); } private String bytesToHex(byte[] bytes) { StringBuilder result = new StringBuilder(); for (byte b : bytes) { result.append(String.format("%02x", b)); } return result.toString(); } private boolean isAllZeros(byte[] array) { for (byte b : array) { if (b != 0) { return false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
src/archive/zip/zip_test.go
} // Issue 4302. func TestHeaderInvalidTagAndSize(t *testing.T) { const timeFormat = "20060102T150405.000.txt" ts := time.Now() filename := ts.Format(timeFormat) h := FileHeader{ Name: filename, Method: Deflate, Extra: []byte(ts.Format(time.RFC3339Nano)), // missing tag and len, but Extra is best-effort parsing } h.SetModTime(ts) testValidHeader(&h, t) }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu May 23 01:00:11 UTC 2024 - 19.6K bytes - Viewed (0)