- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 531 for matchAt (0.06 sec)
-
src/test/java/jcifs/smb1/smb1/SmbTreeTest.java
assertTrue(tree.matches("testShare", "testService")); assertTrue(tree.matches("TESTSHARE", "testService")); assertTrue(tree.matches("testshare", "TESTSERVICE")); // Test matching share with null service assertTrue(tree.matches("testShare", null)); // Test matching share with service starting with "??" assertTrue(tree.matches("testShare", "??otherService"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
*/ ConstructorDesc getConstructorDesc(Class<?>... paramTypes); /** * Returns the {@link ConstructorDesc} that matches the given arguments. * * @param args * The arguments to pass to the constructor * @return The {@link ConstructorDesc} that matches the given arguments */ ConstructorDesc getSuitableConstructorDesc(Object... args); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcIntegrationTest.java
NdrBuffer decodeBuffer = new NdrBuffer(buffer, 0); lsarpc.LsarDomainInfo decodedInfo = new lsarpc.LsarDomainInfo(); decodedInfo.decode(decodeBuffer); // Verify the decoded data matches assertEquals(domainInfo.name.length, decodedInfo.name.length); assertEquals(domainInfo.name.maximum_length, decodedInfo.name.maximum_length); assertNotNull(decodedInfo.name.buffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
okhttp/src/commonTest/kotlin/okhttp3/OkHttpTest.kt
package okhttp3 import assertk.assertThat import assertk.assertions.matches import org.junit.jupiter.api.Test class OkHttpTest { @Test fun testVersion() { assertThat(OkHttp.VERSION).matches(Regex("[0-9]+\\.[0-9]+\\.[0-9]+(-.+)?")) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 247 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/WebApiManager.java
* by matching incoming requests and processing them accordingly. */ public interface WebApiManager { /** * Checks if the request matches this API manager. * @param request The HTTP servlet request. * @return True if the request matches, false otherwise. */ boolean matches(HttpServletRequest request); /** * Processes the request through this API manager. * @param request The HTTP servlet request.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
assertTrue(manager.matches(request)); request.setRequestURI("/api/v2/label"); assertTrue(manager.matches(request)); request.setRequestURI("/api/search"); assertFalse(manager.matches(request)); request.setRequestURI("/other/v1/search"); assertFalse(manager.matches(request)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0) -
samples/tlssurvey/src/main/kotlin/okhttp3/survey/Iana.kt
fun parseIanaCsvRow(s: String): SuiteId? { if (s.contains("Reserved") || s.contains("Unassigned")) return null val matcher = IANA_CSV_PATTERN.matchEntire(s) ?: return null val id = (matcher.groupValues[1] + matcher.groupValues[2]).decodeHex() return SuiteId(id, matcher.groupValues[3]) } class IanaSuites( val name: String, val suites: List<SuiteId>, ) { fun fromJavaName(javaName: String): SuiteId =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/ThrowablesTest.java
String moreLines = "(?:.*" + System.lineSeparator() + "?)*"; String expected = firstLine + System.lineSeparator() + secondLine + System.lineSeparator() + moreLines; assertThat(getStackTraceAsString(e)).matches(expected); } public void testGetCausalChain() { SomeUncheckedException sue = new SomeUncheckedException(); IllegalArgumentException iae = new IllegalArgumentException(sue);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2FlushRequestTest.java
System.arraycopy(buffer, 8, copiedFileId, 0, 16); assertArrayEquals(expectedFileId, copiedFileId); } @Test @DisplayName("Test wire format structure matches SMB2 specification") void testWireFormatStructure() { byte[] buffer = new byte[256]; Arrays.fill(buffer, (byte) 0xCC); // Fill with pattern to detect unwritten areas
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
} // Test updateDocument with boost matcher public void test_updateDocument_withBoostMatcher() { final Map<String, Object> doc = new HashMap<>(); doc.put("url", "http://example.com"); final DocBoostMatcher matcher = new DocBoostMatcher() { @Override public boolean match(Map<String, Object> map) { return true; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0)