- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 1,130 for match3 (2.58 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
.status(ApiResult.Status.OK) .result()); } /** * Retrieves a specific key match setting by ID. * * @param id the ID of the key match setting to retrieve * @return JSON response containing the key match setting */ // GET /api/admin/keymatch/setting/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt
"CallEnd", ) } private fun assertBytesReadWritten( listener: RecordingEventListener, requestHeaderLength: Matcher<Long?>?, requestBodyBytes: Matcher<Long?>?, responseHeaderLength: Matcher<Long?>?, responseBodyBytes: Matcher<Long?>?, ) { if (requestHeaderLength != null) { val responseHeadersEnd = listener.removeUpToEvent<RequestHeadersEnd>()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 60.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
boolean match = false; if (cachedKeyLen == searchLen) { match = cachedKey.equals(key); } else if (cachedKeyLen < searchLen) { match = key.startsWith(cachedKey); } else if (log.isTraceEnabled()) { log.trace(key + " vs. " + cachedKey); } if (match) { if (log.isDebugEnabled()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
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/java/jcifs/smb1/smb1/ACE.java
* and access mask of each ACE. If the SID matches, the allow/deny flags * and access mask are considered. If the ACE is a "deny" * ACE and <i>any</i> of the desired access bits match bits in the access * mask of the ACE, the whole access check fails. If the ACE is an "allow" * ACE and <i>all</i> of the bits in the desired access bits match bits in * the access mask of the ACE, the access check is successful. Otherwise,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
final CustomSize annotation = field.getAnnotation(CustomSize.class); assertNotNull("Annotation should be present on field", annotation); assertEquals("minKey should match", "test.min", annotation.minKey()); assertEquals("maxKey should match", "test.max", annotation.maxKey()); assertEquals("message should be default", "{jakarta.validation.constraints.Size.message}", annotation.message()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
} } } catch (Exception e) { e.printStackTrace(); } finally { latch.countDown(); } }); } // Then assertTrue(latch.await(10, TimeUnit.SECONDS)); executor.shutdown();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K 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/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) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnection.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 14.9K bytes - Viewed (0)