- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 140 for longUrl (0.05 seconds)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
StringBuilder longUrl = new StringBuilder("https://example.com/"); for (int i = 0; i < 1000; i++) { longUrl.append("very/long/path/segment/"); } longUrl.append("file.html"); urlFilter.addInclude("https://example.com/.*"); // Should handle long URLs without issues assertTrue(urlFilter.match(longUrl.toString())); } /**
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Wed Sep 03 14:42:53 GMT 2025 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
@Test public void testLongUrl() { // Test with very long URL StringBuilder longUrl = new StringBuilder("https://example.com/path"); for (int i = 0; i < 100; i++) { longUrl.append("/segment").append(i); } CurlRequest request = new CurlRequest(Method.GET, longUrl.toString()); assertNotNull(request); assertEquals(Method.GET, request.method()); }Created: Sat Dec 20 09:13:53 GMT 2025 - Last Modified: Mon Nov 24 03:10:07 GMT 2025 - 20.5K bytes - Click Count (0) -
docs/changelogs/changelog_2x.md
`Dispatcher.getRunningCallCount()`. These can be useful in diagnostics. * Fix: OkHttp no longer shares timeouts between pooled connections. This was causing some applications to crash when connections were reused. * Fix: `OkApacheClient` now allows an empty `PUT` and `POST`. * Fix: Websockets no longer rebuffer socket streams. * Fix: Websockets are now better at handling close frames.
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Feb 06 02:19:09 GMT 2022 - 26.6K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnectionPool.kt
// We've chosen a connection to evict. Confirm it's still okay to be evicted, then close it. toEvict.withLock { if (toEvict.calls.isNotEmpty()) return 0L // No longer idle. if (toEvict.idleAtNs != toEvictIdleAtNs) return 0L // No longer oldest. toEvict.noNewExchanges = true connections.remove(toEvict) } toEvict.socket().closeQuietly()
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Oct 08 03:50:05 GMT 2025 - 11.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java
@Override public boolean isResolveDependencies() { return resolveDependencies; } /** * @since 3.2.2 * @deprecated This got added when implementing MNG-2199 and is no longer used. * Commit 6cf9320942c34bc68205425ab696b1712ace9ba4 updated the way 'MavenProject' objects are initialized. */ @Deprecated @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 10:13:56 GMT 2025 - 9.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
sb = new StringBuffer(); ace.appendCol(sb, "exact", 5); assertEquals("exact", sb.toString()); // Test with longer string than width sb = new StringBuffer(); ace.appendCol(sb, "longer string", 5); assertEquals("longer string", sb.toString()); } @Test @DisplayName("Test getFlags returns correct value") void testGetFlags() {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.6K bytes - Click Count (0) -
doc/godebug.md
As of Go 1.23 (`winsymlink=1`), mount points no longer have [`os.ModeSymlink`](/pkg/os#ModeSymlink) set, and reparse points that are not symlinks, Unix sockets, or dedup files now always have [`os.ModeIrregular`](/pkg/os#ModeIrregular) set. As a result of these changes, [`filepath.EvalSymlinks`](/pkg/path/filepath#EvalSymlinks) no longer evaluates mount points, which was a source of many inconsistencies and bugs.
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Dec 03 00:18:09 GMT 2025 - 24.7K bytes - Click Count (0) -
src/test/java/jcifs/smb1/util/HMACT64Test.java
import java.util.Arrays; import org.junit.jupiter.api.Test; class HMACT64Test { private static final byte[] TEST_KEY = "testkey".getBytes(); private static final byte[] LONG_TEST_KEY = new byte[80]; // Longer than 64 bytes private static final byte[] SHORT_TEST_KEY = "short".getBytes(); private static final byte[] TEST_DATA = "testdata".getBytes(); private static final byte[] EMPTY_DATA = new byte[0]; static {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.1K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
* whenAll*().call*(), this future may be pending until the callback runs -- or even longer in * the case of callAsync(), which waits for the callback's returned future to complete. */ releaseResources(ALL_INPUT_FUTURES_PROCESSED); } /** * Clears fields that are no longer needed after this future has completed -- or at least all itsCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 16K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
int NT_STATUS_FILE_IS_A_DIRECTORY = 0xC00000ba; /** A duplicate name exists on the network */ int NT_STATUS_DUPLICATE_NAME = 0xC00000bd; /** The specified network name is no longer available */ int NT_STATUS_NETWORK_NAME_DELETED = 0xC00000c9; /** Network access is denied */ int NT_STATUS_NETWORK_ACCESS_DENIED = 0xC00000ca; /** The network name cannot be found */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 13.2K bytes - Click Count (0)