- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for 82 (0.01 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/fs/FileSystemClientTest.java
value = "file://テスト.txt"; result = "file://%E3%83%86%E3%82%B9%E3%83%88.txt"; assertEquals(result, fsClient.preprocessUri(value)); value = "test.txt"; result = "file://test.txt"; assertEquals(result, fsClient.preprocessUri(value)); value = "テスト.txt"; result = "file://%E3%83%86%E3%82%B9%E3%83%88.txt"; assertEquals(result, fsClient.preprocessUri(value));Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:59:28 UTC 2025 - 11.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolverTest.java
assertEquals(expected, resolver.toAscii(host)); host = "xn--zckzah.org"; expected = "xn--zckzah.org"; assertEquals(expected, resolver.toAscii(host)); host = "%E3%83%86%E3%82%B9%E3%83%88.org"; expected = "xn--zckzah.org"; assertEquals(expected, resolver.toAscii(host)); } public void test_resolve_ipv6() throws UnknownHostException {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 06 07:24:43 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type2Message.java
final byte[] type2 = new byte[data + target.length + (targetInformation != null ? targetInformation.length : 0)]; System.arraycopy(NTLMSSP_SIGNATURE, 0, type2, 0, 8); writeULong(type2, 8, 2); writeSecurityBuffer(type2, 12, data, target); writeULong(type2, 20, flags); System.arraycopy(challenge != null ? challenge : new byte[8], 0, type2, 24, 8);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileTest.java
// Assert assertNotNull(outputStream); verify(smbFile).openUnshared(SmbConstants.O_CREAT | SmbConstants.O_WRONLY | SmbConstants.O_TRUNC, // 82 SmbConstants.O_WRONLY, // 2 SmbConstants.DEFAULT_SHARING, // 7, not FILE_SHARE_READ (1) SmbConstants.ATTR_NORMAL, // 128 0); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
assertEquals("http://example.com:8080/path/file", HcHttpClient.constructRedirectLocation("http://example.com:8080/path/", "file")); assertEquals("http://example.com/%E3%83%86%E3%82%B9%E3%83%88", HcHttpClient.constructRedirectLocation("http://example.com/", "テスト")); assertEquals("http://example.com/hello%20world", HcHttpClient.constructRedirectLocation("http://example.com/", "hello world"));
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 11.7K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
List<SmbFile> cached = dirManager.getCachedDirectoryListing("/test/dir"); assertNotNull(cached); assertEquals(2, cached.size()); } ``` ### 8.2 Integration Tests ```java @Test public void testDirectoryListingCache() throws Exception { CIFSContext context = getTestContext(); context.getConfig().setProperty("jcifs.smb.client.useDirectoryLeasing", "true");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- github.com/dgryski/go-sip13: [e10d5fe](https://github.com/dgryski/go-sip13/tree/e10d5fe) - github.com/docker/distribution: [v2.8.2+incompatible](https://github.com/docker/distribution/tree/v2.8.2) - github.com/fatih/color: [v1.7.0](https://github.com/fatih/color/tree/v1.7.0) - github.com/frankban/quicktest: [v1.14.0](https://github.com/frankban/quicktest/tree/v1.14.0)
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Tue Dec 16 18:27:41 UTC 2025 - 448.1K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
// Test lease break manager.handleLeaseBreak(key, Smb2LeaseState.SMB2_LEASE_READ_CACHING); assertEquals(Smb2LeaseState.SMB2_LEASE_READ_CACHING, entry.getLeaseState()); } } ``` ### 8.2 Integration Tests ```java @Test public void testLeaseWithRealServer() throws Exception { // Requires SMB3 capable server CIFSContext context = getTestContext();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
assertEquals(8192, SMBUtil.readInt4(buffer, 54)); // Read length assertEquals(16384L, SMBUtil.readInt8(buffer, 58)); // Offset assertEquals(1024, SMBUtil.readInt4(buffer, 82)); // Minimum count assertEquals(4096, SMBUtil.readInt4(buffer, 90)); // Remaining bytes } @Test @DisplayName("Should handle multiple parameter updates")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java
return new SampleElements<>( mapEntry("one", 114), mapEntry("two", 37), mapEntry("three", 42), mapEntry("four", 19), mapEntry("five", 82)); } @SuppressWarnings("unchecked") @Override public Entry<String, Integer>[] createArray(int length) { return (Entry<String, Integer>[]) new Entry<?, ?>[length]; }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Sep 24 22:52:18 UTC 2025 - 28.4K bytes - Viewed (0)