- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 1,110 for match3 (0.04 sec)
-
src/main/java/org/codelibs/fess/job/ExecJob.java
} /** * Adds custom system properties that match the given regex pattern to the command list. * * @param cmdList the command list to add properties to * @param regex the regular expression pattern to match property names */ protected void addFessCustomSystemProperties(final List<String> cmdList, final String regex) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbExceptionTest.java
} else { // Positive values not in DOS_ERROR_CODES map to NT_STATUS_UNSUCCESSFUL expected = NtStatus.NT_STATUS_UNSUCCESSFUL; } assertEquals(expected, ex.getNtStatus(), "Status should match mapping or fallback"); } /** * Verify that root causes are stored and returned correctly. */ @Test @DisplayName("Root cause propagation") void testRootCausePropagation() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
} /** * Returns a {@link ConstructorDesc} that matches the given arguments. * <p> * If the parameter type is a number, it is considered a match if the argument can be converted to the number type. * </p> * * @param args * the constructor arguments * @return a {@link ConstructorDesc} that matches the arguments, or {@literal null} if none exists */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java
// Should match with same values assertTrue(fileInfo.matches(1024L, 1000L, 0x20)); // Should not match with different size assertFalse(fileInfo.matches(2048L, 1000L, 0x20)); // Should not match with different last modified assertFalse(fileInfo.matches(1024L, 2000L, 0x20)); // Should not match with different attributes
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 8.4K 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) -
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/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) -
guava/src/com/google/common/base/Predicates.java
} /** * Returns a predicate that evaluates to {@code true} if the {@code CharSequence} being tested * contains any match for the given regular expression pattern. The test used is equivalent to * {@code Pattern.compile(pattern).matcher(arg).find()} * * @throws IllegalArgumentException if the pattern is invalid * @since 3.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 26.6K 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/util/PrunedTagTest.java
assertTrue(tagWithIdAndCss.matches(nodeWithBothIdAndClass)); // Node with correct id but different class should still match (id takes precedence) MockNode nodeWithCorrectIdWrongClass = new MockNode("div"); nodeWithCorrectIdWrongClass.addAttribute("id", "main"); nodeWithCorrectIdWrongClass.addAttribute("class", "other"); assertTrue(tagWithIdAndCss.matches(nodeWithCorrectIdWrongClass));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0)