- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 117 for normalizes (0.09 sec)
-
src/main/java/org/codelibs/core/text/DecimalFormatUtil.java
/** * Normalizes the string representation of a number. * * @param s * A string representing a number * @return The normalized string * @see #normalize(String, Locale) */ public static String normalize(final String s) { return normalize(s, LocaleUtil.getDefault()); } /**
Registered: 2025-05-24 08:58 - Last Modified: 2025-05-10 01:32 - 2.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
this.spaceChars = spaceChars; return this; } } /** * Normalizes the text from the given Reader. * * @param reader the Reader from which to read the text to be normalized * @return a TextNormalizeContext containing the normalized text */ public static TextNormalizeContext normalizeText(final Reader reader) {
Registered: 2025-05-25 03:50 - Last Modified: 2025-03-15 06:52 - 11.8K bytes - Viewed (0) -
internal/config/identity/ldap/ldap.go
} return res, nil } // QuickNormalizeDN - normalizes the given DN without checking if it is valid or // exists in the LDAP directory. Returns input if error func (l Config) QuickNormalizeDN(dn string) string { if normDN, err := xldap.NormalizeDN(dn); err == nil { return normDN } return dn } // DecodeDN - denormalizes the given DN by unescaping any escaped characters. // Returns input if error
Registered: 2025-05-25 19:28 - Last Modified: 2024-07-12 01:04 - 12.4K bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
* Resolves and adds the given directory as a source with the given scope and language. * First, this method resolves the given root against the project base directory, then normalizes the path. * If no source already exists for the same scope, language and normalized directory, * these arguments are added as a new {@link SourceRoot} element.
Registered: 2025-05-24 08:56 - Last Modified: 2025-01-30 23:29 - 12K bytes - Viewed (0) -
cmd/iam.go
func (sys *IAMSys) createCleanEntitiesQuery(q madmin.PolicyEntitiesQuery, ldap bool) cleanEntitiesQuery { cleanQ := cleanEntitiesQuery{ Users: make(map[string]set.StringSet), Groups: set.CreateStringSet(q.Groups...), Policies: set.CreateStringSet(q.Policy...), } if ldap { // Validate and normalize users, then fetch and normalize their groups
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-16 07:34 - 76.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/Normalizer.java
*/ package org.codelibs.fess.suggest.normalizer; /** * An interface for normalizing text. * Implementations of this interface should provide a method to normalize * a given text based on the specified field and optional language parameters. */ public interface Normalizer { String normalize(String text, String field, String... langs);
Registered: 2025-06-06 09:08 - Last Modified: 2025-03-15 06:51 - 965 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/NormalizerChain.java
List<Normalizer> normalizers = new ArrayList<>(); @Override public String normalize(final String text, final String field, final String... langs) { String tmp = text; for (final Normalizer normalizer : normalizers) { tmp = normalizer.normalize(tmp, field, langs); } return tmp; } public void add(final Normalizer normalizer) {
Registered: 2025-06-06 09:08 - Last Modified: 2025-03-15 06:51 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/ICUNormalizerTest.java
*/ package org.codelibs.fess.suggest.normalizer; import junit.framework.TestCase; public class ICUNormalizerTest extends TestCase { public void test_FullwidthHalfwidth() { ICUNormalizer normalizer = new ICUNormalizer("Fullwidth-Halfwidth"); assertEquals("abcd", normalizer.normalize("abcd", null)); assertEquals("みかん", normalizer.normalize("みかん", null));
Registered: 2025-06-06 09:08 - Last Modified: 2025-03-15 06:51 - 1.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-NormalizeJvm.kt
* limitations under the License. */ @file:Suppress("ktlint:standard:filename") package okhttp3.internal import java.text.Normalizer import java.text.Normalizer.Form.NFC
Registered: 2025-05-30 11:42 - Last Modified: 2024-12-27 13:39 - 842 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/DefaultNormalizerTest.java
runner.close(); runner.clean(); } @Test public void test_normalize() throws Exception { Normalizer normalizer = SuggestUtil.createDefaultNormalizer(runner.client(), suggester.settings()); assertEquals("12345,.*[]「」abcケンサクabcdけんさくガギグゲゴ", normalizer.normalize("12345,.*[]「」ABCケンサクabcdけんさくガギグゲゴ", null)); }
Registered: 2025-06-06 09:08 - Last Modified: 2025-03-15 06:51 - 2.3K bytes - Viewed (0)