- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 473 for Charsets (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java
/** * Gets the pattern used for extracting charset from meta tags. * * @return the meta charset pattern */ public Pattern getMetaCharsetPattern() { return metaCharsetPattern; } /** * Sets the pattern used for extracting charset from meta tags. * * @param metaCharsetPattern the meta charset pattern to set */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.3K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
* charset} parameter set to the {@link Charset#name name} of the given charset. Only one {@code * charset} parameter will be present on the new instance regardless of the number set on this * one. * * <p>If a charset must be specified that is not supported on this JVM (and thus is not * representable as a {@link Charset} instance), use {@link #withParameter}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/TextTransformer.java
* The extracted text is then converted into a byte array using the specified charset encoding. * It also provides a method to retrieve the extracted data as a String from an AccessResultData object. * * <p> * The class handles character encoding issues by attempting to use the specified charset. * If the specified charset is invalid, it falls back to UTF-8. * </p> * * <p>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
* @param charset The charset to use for reading. * @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) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 16K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
protected String getCharSet(final File file) { return charset; } /** * Gets the character encoding used for files. * * @return the character encoding */ public String getCharset() { return charset; } /** * Sets the character encoding used for files. * * @param charset the character encoding to set */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.8K bytes - Viewed (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; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 23K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvTargetName.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.ntlmssp.av; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; /** * NTLMSSP AV pair representing target name information in NTLM authentication. * Contains the name of the target server or service being authenticated against. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
* * @author mbechler */ public final class Strings { private static final Logger log = LoggerFactory.getLogger(Strings.class); private static final Charset UNI_ENCODING = Charset.forName("UTF-16LE"); private static final Charset ASCII_ENCODING = Charset.forName("US-ASCII"); private static final boolean MASK_SECRET_VALUE = System.getProperty("jcifs.maskSecretValue", "true") == "true";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java
content = "...;charset=UTF-8\"..."; assertEquals("UTF-8", htmlTransformer.parseCharset(content)); content = "...; charset=UTF-8\"..."; assertEquals("UTF-8", htmlTransformer.parseCharset(content)); content = "...;charset = UTF-8\"..."; assertEquals("UTF-8", htmlTransformer.parseCharset(content)); content = "...;charset=UTF-8 \"...";
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 13.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
*/ 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) { this.charSet = charSet; } /** * Gets the content length of the response. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0)