- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 62 for hyphen (0.03 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
* Extracts the canonical session ID by removing any suffix after the first hyphen. * If the session ID contains a hyphen, returns the portion before the first hyphen. * Otherwise, returns the original session ID. * * @param sessionId the session ID to process * @return the canonical session ID (portion before first hyphen, or original if no hyphen) */ public String getCanonicalSessionId(final String sessionId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
// Verify assertTrue(result.isPresent()); assertEquals(Locale.FRENCH, result.get()); } // Test findBusinessLocale with hyphen separator public void test_findBusinessLocale_withHyphenSeparator() { // Setup mock config FessConfig mockConfig = new FessConfig.SimpleImpl() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
public void test_convertFuzzyQuery_withSpecialCharacters() { QueryContext context = new QueryContext("test", false); String[] specialTexts = { "******@****.***", "test-hyphen", "test_underscore", "test.period", "test+plus" }; for (String text : specialTexts) { Term term = new Term("title", text); FuzzyQuery fuzzyQuery = new FuzzyQuery(term);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
import java.util.Objects; import java.util.Properties; /** * <p> * Generic implementation of version comparison. * </p> * <p> * Features: * <ul> * <li>Mixing of '<code>-</code>' (hyphen) and '<code>.</code>' (dot) separators,</li> * <li>Transition between characters and digits also constitutes a separator: * <code>1.0alpha1 => [1, [alpha, 1]]</code></li> * <li>Unlimited number of version components,</li>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
// source.put("version_no", searchLogEvent.getVersionNo()); source.put("event_type", searchLogEvent.getEventType()); return source; } /** * Converts a map to lower hyphen case. * * @param source The source map. * @return The converted map. */ protected Map<String, Object> toLowerHyphen(final Map<String, Object> source) { return source.entrySet()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt
assertThat(parse("http://ABCD").host).isEqualTo("abcd") assertThat(parse("http://Σ").host).isEqualTo("xn--4xa") } @Test fun hostnameIgnoredCharacters() { // The soft hyphen () should be ignored. assertThat(parse("http://AB\u00adCD").host).isEqualTo("abcd") } @Test fun hostnameMultipleCharacterMapping() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Aug 04 07:38:48 UTC 2025 - 69.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/ndr/NdrHyperTest.java
NdrHyper hyper = new NdrHyper(5L); assertThrows(NullPointerException.class, () -> hyper.encode(null)); } /** * Ensure decode throws NPE when passed a null buffer. */ @Test @DisplayName("Decode with null buffer throws NullPointerException") public void testDecodeNullBuffer() throws NdrException { NdrHyper hyper = new NdrHyper(0L);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrHyper.java
*/ package jcifs.smb1.dcerpc.ndr; /** * NDR representation of a hyper integer (8-byte signed integer). */ public class NdrHyper extends NdrObject { /** * The hyper integer value. */ public long value; /** * Constructs an NdrHyper with the specified value. * * @param value the hyper integer value */ public NdrHyper(final long value) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrHyper.java
*/ package jcifs.dcerpc.ndr; /** * NDR representation of a hyper integer (8-byte signed integer). */ public class NdrHyper extends NdrObject { /** * The hyper integer value. */ public long value; /** * Constructs an NdrHyper with the specified value. * * @param value the hyper integer value */ public NdrHyper(final long value) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java
return val; } /** * Encodes a hyper integer (8 bytes) in NDR format. * * @param h the hyper integer value to encode */ public void enc_ndr_hyper(final long h) { align(8); Encdec.enc_uint64le(h, buf, index); advance(8); } /** * Decodes a hyper integer (8 bytes) from NDR format. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.4K bytes - Viewed (0)