- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 344 for W123 (0.02 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt
0 1 2 3 4 5 6 7 0 1 2 3 4 5 6 7 +-+-+-+-+-------+ +-+-------------+ |F|R|R|R| OP | |M| LENGTH | |I|S|S|S| CODE | |A| | |N|V|V|V| | |S| | | |1|2|3| | |K| | +-+-+-+-+-------+ +-+-------------+ */ /** Byte 0 flag for whether this is the final fragment in a message. */ internal const val B0_FLAG_FIN = 128
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableListCopyOfConcurrentlyModifiedInputTest.java
runConcurrentlyMutatedTest(elements(1, 2), ops(remove(), add(3)), wrap); runConcurrentlyMutatedTest(elements(1, 2), ops(nop(), remove()), wrap); runConcurrentlyMutatedTest(elements(1, 2, 3), ops(remove(), remove()), wrap); } private static ImmutableList<Integer> elements(Integer... elements) { return ImmutableList.copyOf(elements); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeTest.java
} @Test @DisplayName("toString with special characters in pipe name") void testToStringWithSpecialCharacters() { // Arrange String specialPipeName = "\\PIPE\\test$pipe#123"; transWaitNamedPipe = new TransWaitNamedPipe(mockConfig, specialPipeName); // Act String result = transWaitNamedPipe.toString(); // Assert assertNotNull(result);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
assertSame(second, retrieved2); } public void test_multiple_components() { String comp1 = "component1"; String comp2 = "component2"; Integer comp3 = 123; ComponentUtil.register(comp1, "name1"); ComponentUtil.register(comp2, "name2"); ComponentUtil.register(comp3, "name3"); assertEquals(comp1, ComponentUtil.getComponent("name1"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
assertProvideThrowsException("Test\nClassification"); } public void test_provide_withNumericValues() { // Test classification names with numeric values assertProvideThrowsException("123"); assertProvideThrowsException("0"); assertProvideThrowsException("-1"); assertProvideThrowsException("Test123"); assertProvideThrowsException("123Test");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
SmbComNegotiateResponse smb1 = new SmbComNegotiateResponse(ctx); ServerData sd = smb1.getServerData(); sd.encryptionKey = new byte[] { 1, 2, 3 }; setField(transport, "negotiated", smb1); assertArrayEquals(new byte[] { 1, 2, 3 }, transport.getServerEncryptionKey()); // SMB2 negotiation never exposes key via this API setField(transport, "negotiated", new Smb2NegotiateResponse(cfg));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java
class EncodingTests { @Test @DisplayName("Should encode value correctly") void testEncode() throws NdrException { // Given: NdrShort with test value int testValue = 123; NdrShort ndrShort = new NdrShort(testValue); // When: Encoding the value ndrShort.encode(mockBuffer); // Then: Should call enc_ndr_short with masked value
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/UniAddressTest.java
void isAllDigitsTrueForPureNumeric(String numeric) { assertTrue(UniAddress.isAllDigits(numeric)); } @ParameterizedTest @ValueSource(strings = { "12a", "abc", "123 " }) void isAllDigitsFalseForNonNumeric(String nonNumeric) { assertFalse(UniAddress.isAllDigits(nonNumeric)); } @Test void isAllDigitsHandlesEmptyString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
public void test_getArtifactFromFileName_complexName() { Artifact artifact = pluginHelper.getArtifactFromFileName(ArtifactType.DATA_STORE, "fess-ds-web-crawler-1.2.3-beta.jar"); assertEquals("fess-ds-web-crawler", artifact.getName()); assertEquals("1.2.3-beta", artifact.getVersion()); } public void test_getArtifactFromFileName_singleVersion() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2Test.kt
}.also { expected -> assertThat(expected.message) .isEqualTo("PROTOCOL_ERROR: FLAG_COMPRESSED without SETTINGS_COMPRESS_DATA") } } @Test fun readPaddedDataFrame() { val dataLength = 1123 val expectedData = ByteArray(dataLength) Arrays.fill(expectedData, 2.toByte()) val paddingLength = 254 val padding = ByteArray(paddingLength) Arrays.fill(padding, 0.toByte())
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 28.1K bytes - Viewed (0)