- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 166 for character (0.07 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
} /** * Gets the character set of the response. * * @return the character set, or null if not specified */ public String getCharSet() { return charSet; } /** * Sets the character set of the response. * * @param charSet the character set to set */ public void setCharSet(final String charSet) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java
*/ public RobotsTxt parse(final InputStream stream) { return parse(stream, Constants.UTF_8); } /** * Parses a robots.txt file from the given input stream using the specified character encoding. * * <p>This method is designed to be resilient to malformed robots.txt files. * It will parse valid directives and ignore invalid ones, ensuring that partialRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/NumberConversionUtil.java
* @return Separator for grouping */ public static String findGroupingSeparator(final Locale locale) { final DecimalFormatSymbols symbol = getDecimalFormatSymbols(locale); return Character.toString(symbol.getGroupingSeparator()); } /** * Returns the separator for decimal numbers. * * @param locale * Locale * @return Separator for decimal numbersRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
} return uri; } /** * Returns the character set for the given SMB1 file. * * @param file the SMB1 file * @return the character set */ protected String getCharSet(final SmbFile file) { return charset; } /* * (non-Javadoc) *Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
} return filePath; } /** * Returns the character set used for content encoding. * @return the charset */ public String getCharset() { return charset; } /** * Sets the character set used for content encoding. * @param charset the charset to set */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
if (hostname != null && hostname.length() > 0 && Character.isDigit(hostname.charAt(0))) { int i, len, dots; char[] data; i = dots = 0; /* quick IP address validation */ len = hostname.length(); data = hostname.toCharArray(); while (i < len && Character.isDigit(data[i++])) { if (i == len && dots == 3) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
BytesRef matchOutput = null; int index = 0; while (start + index < src.length) { final int codePoint = Character.codePointAt(src, start + index, src.length); if (fst.findTargetArc(ignoreCase ? Character.toLowerCase(codePoint) : codePoint, scratchArc, scratchArc, fstReader) == null) { return matchOutput; }Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java
/** * Converts Katakana characters to their corresponding Alphabet representations. * * <p> * This class implements the {@link ReadingConverter} interface and provides a method to convert a given * Katakana string into a list of possible Alphabet readings. It uses a predefined mapping of Katakana * characters to their Alphabet equivalents, handling both single and double Katakana character combinations. * </p> * * <p>Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 11.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
} return uri; } /** * Returns the character set for the given SMB file. * * @param file the SMB file * @return the character set */ protected String getCharSet(final SmbFile file) { return charset; } /* * (non-Javadoc) *Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.4K bytes - Viewed (3) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformer.java
* </p> * <p> * The class supports various XPath result types, including BOOLEAN, NUMBER, STRING, NODESET, and NODE. * It also provides options to trim whitespace from extracted values and to specify the character encoding for the output. * </p> * <p> * The {@link #getData(AccessResultData)} method allows retrieving the transformed data as a String (XML content), * a Map, or an instance of a specified class. * </p> *Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.1K bytes - Viewed (0)