- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 57 for charlen (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java
* 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 */ public void setCharset(final String charset) { this.charset = charset; } /* * (non-Javadoc) *Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 17.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java
validateInputStream(in); final Charset charset = getCharset(params); final List<String[]> rows = new ArrayList<>(); String[] headers = null; try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, charset))) { String line; Character detectedDelimiter = delimiter;
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 12.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
* * @return the charset */ public String getCharset() { return charset; } /** * Sets the character set used for SMB1 operations. * * @param charset the charset to set */ public void setCharset(final String charset) { this.charset = charset; } /**Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 23.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
* Returns the character set used for SMB operations. * @return the charset */ public String getCharset() { return charset; } /** * Sets the character set used for SMB operations. * @param charset the charset to set */ public void setCharset(final String charset) { this.charset = charset; } /** * Sets the SMB authentication holder.Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 23.4K bytes - Click Count (3) -
guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java
buffer.putChar(input.charAt(i)); } return hashBytes(buffer.array()); } @Override public HashCode hashString(CharSequence input, Charset charset) { return hashBytes(input.toString().getBytes(charset)); } @Override public abstract HashCode hashBytes(byte[] input, int off, int len); @Override public HashCode hashBytes(ByteBuffer input) {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 04 15:39:10 GMT 2025 - 4.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
} /** * Checks if the specified charset is supported. * * @param charsetName the charset name to check * @return true if the charset is supported, false otherwise */ protected boolean isSupportedCharset(final String charsetName) { if (charsetName == null) { return false; } try { Charset.forName(charsetName);Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Nov 29 07:42:33 GMT 2025 - 30.5K bytes - Click Count (0) -
src/main/resources/fess_label_nl.properties
labels.depth=Diepte labels.excludedPaths=Pad(en) om uit te sluiten van crawlen labels.excludedUrls=URL(s) om uit te sluiten van crawlen labels.excludedDocPaths=Pad(en) om uit te sluiten van zoeken labels.excludedDocUrls=URL(s) om uit te sluiten van zoeken labels.hostname=Hostnaam labels.id=ID labels.includedPaths=Pad(en) om op te nemen in crawlen labels.includedUrls=URL(s) om op te nemen in crawlen labels.includedDocPaths=Pad(en) om op te nemen in zoeken
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 46.1K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
* @param charset The character encoding to use. * @param maxOutputLineBuffer The maximum number of lines to buffer. */ public InputStreamThread(final InputStream is, final String charset, final int maxOutputLineBuffer) { try { br = new BufferedReader(new InputStreamReader(is, charset)); } catch (final UnsupportedEncodingException e) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.4K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
*/ public String getCharset() { return charset; } /** * Sets the character encoding used for FTP operations. * * @param charset The character encoding to set */ public void setCharset(final String charset) { this.charset = charset; } /* * (non-Javadoc) *Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 40K bytes - Click Count (0) -
pom.xml
</plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <charset>UTF-8</charset> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <archive> <manifestEntries>
Created: Sat Dec 20 09:13:53 GMT 2025 - Last Modified: Sat Dec 20 04:17:15 GMT 2025 - 4.7K bytes - Click Count (0)