- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for long_tag_ (2.09 sec)
-
src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java
assertEquals('\n', PopularWordHelper.CACHE_KEY_SPLITTER); } public void test_getCacheKey_longStrings() { String seed = "very_long_seed_" + "x".repeat(100); String[] tags = { "long_tag_" + "y".repeat(50), "another_long_tag_" + "z".repeat(50) }; String[] roles = { "long_role_" + "a".repeat(50) }; String[] fields = { "long_field_" + "b".repeat(50) };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestCommonTest.kt
} @Test fun multipleTags() { val stringTag = "dilophosaurus" val longTag = 20170815L as Long? val objectTag = Any() val request = Request .Builder() .url("https://square.com") .tag(Any::class, objectTag) .tag(String::class, stringTag) .tag(Long::class, longTag) .build() assertThat(request.tag<Any>()).isSameAs(objectTag)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestTest.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 19K bytes - Viewed (0)