- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 857 for match3 (0.04 sec)
-
okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt
expectFailure(platformMatches(LOOM_PROPERTY)) } private fun expectFailure( versionMatcher: Matcher<out Any>, failureMatcher: Matcher<out Any> = anything(), ) { versionChecks.add(Pair(versionMatcher, failureMatcher)) } fun platformMatches(platform: String): Matcher<Any> = object : BaseMatcher<Any>() { override fun describeTo(description: Description) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 15.4K bytes - Viewed (1) -
src/main/resources/fess_indices/_aws/fess/doc.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.7K bytes - Viewed (0) -
src/main/resources/fess_indices/_cloud/fess/doc.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
// Test without mappings assertEquals("path/to/file", generator.expandPath("path/to/file")); assertNull(generator.expandPath(null)); // Test with exact match mappings (expandPath only replaces exact matches) generator.filePathMap.put("${home}/file", "/home/user/file"); assertEquals("/home/user/file", generator.expandPath("${home}/file"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java
saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); }); return redirect(getClass()); } /** * Deletes all failure URL records that match the current search criteria. * * @return HTML response redirecting to the failure URL list page */ @Execute @Secured({ ROLE }) public HtmlResponse deleteall() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
// Should not match non-included path assertFalse(pattern.match("/other/path")); } public void test_labelTypePattern_match_onlyIncluded() { LabelTypePattern pattern = new LabelTypePattern("test", "/test.*", null); // Should match included path assertTrue(pattern.match("/test/path")); // Should not match non-included path
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
final List<Artifact> list = new ArrayList<>(); final String repoContent = getRepositoryContent(url); final Matcher matcher = Pattern.compile("href=\"[^\"]*(" + artifactType.getId() + "[a-zA-Z0-9\\-]+)/?\"").matcher(repoContent); while (matcher.find()) { final String name = matcher.group(1); if (isExcludedName(artifactType, name)) { continue; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt
for (entry in lruEntries.values.toTypedArray()) { removeEntry(entry) } mostRecentTrimFailed = false } private fun validateKey(key: String) { require(LEGAL_KEY_PATTERN.matches(key)) { "keys must match regex [a-z0-9_-]{1,120}: \"$key\"" } } /** * Returns an iterator over the cache's current entries. This iterator doesn't throw
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 34.7K bytes - Viewed (0) -
src/main/webapp/js/admin/jquery-3.7.1.min.js
if(!le.radioValue&&"radio"===t&&fe(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(D);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),mt={set:function(e,t,n){return!1===t?ce.removeAttr(e,n):e.setAttribute(n,n),n}},ce.each(ce.expr.match.bool.source.match(/\w+/g),function(e,t){var a=xt[t]||ce.find.attr;xt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=xt[o],xt[o]=r,r=null!=a(e,t,n)?o:null,xt[o]=i),r}});var...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 85.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
map.put("data1", 20); assertTrue(docBoostMatcher.match(map)); map.put("data1", 5); assertFalse(docBoostMatcher.match(map)); map.remove("data1"); assertFalse(docBoostMatcher.match(map)); map.put("data2", 5); assertFalse(docBoostMatcher.match(map)); } public void test_string() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.6K bytes - Viewed (0)