- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 3,617 for full (0.02 sec)
-
.github/ISSUE_TEMPLATE/FEATURE.yml
# # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema name: Feature request description: File a proposal for new feature, improvement labels: ["enhancement"] body: - type: markdown attributes: value: | Thanks for taking the time to fill out this new feature, improvement proposal. - type: textarea id: message
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:30:05 UTC 2025 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/spnego/NegTokenInitTest.java
NegTokenInit p4 = new NegTokenInit(tokenTag4); assertArrayEquals(mic, p4.getMechanismListMIC(), "MIC should be parsed from tag [4]"); // Tag [3] byte[] tokenTag3 = buildInitToken(new ASN1ObjectIdentifier[] { OID_KRB }, null, null, mic, false, null, null, null); NegTokenInit p3 = new NegTokenInit(tokenTag3);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeTest.java
@Test @DisplayName("Test with null pipe name") void testWithNullPipeName() { // Given transCallNamedPipe = new TransCallNamedPipe(mockConfig, null, TEST_DATA, 0, TEST_DATA.length); // When String result = transCallNamedPipe.toString(); // Then assertNotNull(result); assertTrue(result.contains("pipeName=null")); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacMac.java
byte[] dgst = md.digest(data); mac.reset(); mac.init(new SecretKeySpec(dk, HMAC_KEY)); return mac.doFinal(dgst); } finally { Arrays.fill(dk, 0, dk.length, (byte) 0); } } private static int mapArcfourMD5KeyUsage(int keyusage) { int ms_usage = keyusage; switch (ms_usage) { case 3: ms_usage = 8;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
this.isEstablished = false; this.sealClientHandle = null; this.sealServerHandle = null; this.sealClientKey = null; this.sealServerKey = null; this.masterKey = null; this.signKey = null; this.verifyKey = null; this.type1Bytes = null; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HostnamesCommon.kt
if (result.containsInvalidLabelLengths()) return null return result } internal fun idnToAscii(host: String): String? { val bufferA = Buffer().writeUtf8(host) val bufferB = Buffer() // 1. Map, from bufferA to bufferB. while (!bufferA.exhausted()) { val codePoint = bufferA.readUtf8CodePoint() if (!IDNA_MAPPING_TABLE.map(codePoint, bufferB)) return null }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
response = new Smb2QueryDirectoryResponse(mockConfig, expectInfoClass); assertNotNull(response); assertNull(response.getResults()); // Should be null before decoding } @Test @DisplayName("Test getResults returns null initially") void testGetResultsInitiallyNull() { response = new Smb2QueryDirectoryResponse(mockConfig, (byte) 0x03); assertNull(response.getResults()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java
} @Test @DisplayName("Should handle null configuration gracefully") void testNullConfiguration() { // When - constructor accepts null config without throwing Smb2ReadResponse responseWithNull = new Smb2ReadResponse(null, outputBuffer, outputBufferOffset); // Then - response is created successfully
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.1K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
} return false; // Fall back to oplock logic } public boolean canCacheWrite() { if (leaseKey != null) { LeaseEntry entry = leaseManager.getLease(leaseKey); return entry != null && entry.hasWriteCache(); } return false; } public boolean canCacheHandle() { if (leaseKey != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/Striped64.java
} else if (casBase(v = base, fn(v, x))) break; // Fall back on using base } } /** Sets base and all cells to the given value. */ final void internalReset(long initialValue) { Cell[] as = cells; base = initialValue; if (as != null) { int n = as.length; for (int i = 0; i < n; ++i) { Cell a = as[i]; if (a != null) a.value = initialValue; } } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jan 15 22:17:15 UTC 2025 - 11.4K bytes - Viewed (0)