- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 336 for 123 (0.01 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/FormBodyTest.kt
assertThat(formEncode(95)).isEqualTo("_") assertThat(formEncode(96)).isEqualTo("%60") assertThat(formEncode(97)).isEqualTo("a") assertThat(formEncode(122)).isEqualTo("z") assertThat(formEncode(123)).isEqualTo("%7B") assertThat(formEncode(124)).isEqualTo("%7C") assertThat(formEncode(125)).isEqualTo("%7D") assertThat(formEncode(126)).isEqualTo("%7E") assertThat(formEncode(127)).isEqualTo("%7F")
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
void testSerialization() throws Exception { // Given Map<String, Object> context = new HashMap<>(); context.put("key1", "value1"); context.put("key2", 123); exception = new SmbOperationException(SmbOperationException.ErrorCode.FILE_NOT_FOUND, "test.txt not found", new RuntimeException("cause"), SmbOperationException.RetryPolicy.AGGRESSIVE, context);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestTest.kt
| --data '{"key":"value"}' """.trimMargin(), ) } @Test fun curlPostWithComplexBody() { val jsonBody = """ |{ | "user": { | "id": 123, | "name": "Tim O'Reilly" | }, | "roles": ["admin", "editor"], | "active": true |} | """.trimMargin()Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 24 11:36:14 UTC 2025 - 24.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.12.md
- [Server Binaries](#server-binaries-6) - [Node Binaries](#node-binaries-6) - [Changelog since v1.12.3](#changelog-since-v1123) - [Action Required](#action-required) - [Other notable changes](#other-notable-changes-6) - [v1.12.3](#v1123) - [Downloads for v1.12.3](#downloads-for-v1123) - [Client Binaries](#client-binaries-7) - [Server Binaries](#server-binaries-7)Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 293.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeInputStreamTest.java
statusField.setInt(resp, status); Field availField = TransPeekNamedPipeResponse.class.getDeclaredField("available"); availField.setAccessible(true); availField.setInt(resp, 123); return resp; }).when(tree).send(any(TransPeekNamedPipe.class), any(TransPeekNamedPipeResponse.class), eq(RequestParam.NO_RETRY)); int available = stream.available();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SpnegoContextTest.java
@Test @DisplayName("getSigningKey delegates to underlying mechanism context") void testGetSigningKeyDelegates() throws Exception { SpnegoContext ctx = newContext(); byte[] key = new byte[] { 1, 2, 3 }; when(this.mechContext.getSigningKey()).thenReturn(key); assertSame(key, ctx.getSigningKey()); verify(this.mechContext, times(1)).getSigningKey(); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<_comment>Lotus 1-2-3, version 2</_comment> <magic priority="50"> <match value="0x00000200060406000800" type="string" offset="0"> </match> </magic> <glob pattern="*.wk1"/> <glob pattern="*.wk2"/> </mime-type> <mime-type type="application/vnd.lotus-1-2-3;version=3"> <sub-class-of type="application/vnd.lotus-1-2-3"/> <_comment>Lotus 1-2-3, version 3</_comment>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Oct 16 07:46:32 UTC 2025 - 320.2K bytes - Viewed (5) -
src/test/java/org/codelibs/curl/CurlTest.java
// ## Test factory methods with special characters in URL ## // ## Act ## final String specialUrl = "http://example.com/path?query=value¶m=123#fragment"; final CurlRequest getRequest = Curl.get(specialUrl); final CurlRequest postRequest = Curl.post(specialUrl); final CurlRequest putRequest = Curl.put(specialUrl);Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 16.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java
assertThat(UnsignedBytes.join(",", new byte[] {(byte) 1})).isEqualTo("1"); assertThat(UnsignedBytes.join(",", (byte) 1, (byte) 2)).isEqualTo("1,2"); assertThat(UnsignedBytes.join("", (byte) 1, (byte) 2, (byte) 3)).isEqualTo("123"); assertThat(UnsignedBytes.join(",", (byte) 128, (byte) -1)).isEqualTo("128,255"); } private static boolean unsafeComparatorAvailable() { return UnsafeComparator.INSTANCE.isFunctional(); }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java
void testMinimumBufferSize() { // Given byte[] minBuffer = new byte[EXPECTED_SIZE]; SrvCopychunk chunk = new SrvCopychunk(1, 2, 3); // When int bytesWritten = chunk.encode(minBuffer, 0); // Then assertEquals(EXPECTED_SIZE, bytesWritten);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0)