Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 369 for charter (0.04 sec)

  1. android/guava-tests/test/com/google/common/base/Utf8Test.java

    import static java.lang.Character.MAX_CODE_POINT;
    import static java.lang.Character.MAX_HIGH_SURROGATE;
    import static java.lang.Character.MAX_LOW_SURROGATE;
    import static java.lang.Character.MIN_HIGH_SURROGATE;
    import static java.lang.Character.MIN_LOW_SURROGATE;
    import static java.lang.Character.MIN_SUPPLEMENTARY_CODE_POINT;
    import static java.nio.charset.StandardCharsets.UTF_8;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. 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);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 28.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

            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)
  4. 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) {
            this.charSet = charSet;
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  5. 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;
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  6. 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) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java

     */
    package org.codelibs.fess.crawler;
    
    import java.nio.charset.Charset;
    import java.nio.charset.StandardCharsets;
    
    /**
     * Constants used in the fess-crawler.
     * This class provides a collection of constant values for HTTP methods, status codes,
     * transformer names, boolean values, character encodings, date/time formats, and XML features.
     * It is designed to avoid the instantiation.
     */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

        }
    
        /**
         * Returns the character set used for SMB1 operations.
         *
         * @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)
  9. android/guava/src/com/google/common/base/Charsets.java

    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import java.nio.charset.Charset;
    import java.nio.charset.StandardCharsets;
    
    /**
     * Contains constant definitions for the six standard {@link Charset} instances, which are
     * guaranteed to be supported by all Java platform implementations.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/HashTestUtils.java

    import static com.google.common.truth.Truth.assertThat;
    import static java.nio.charset.StandardCharsets.ISO_8859_1;
    import static java.nio.charset.StandardCharsets.US_ASCII;
    import static java.nio.charset.StandardCharsets.UTF_16;
    import static java.nio.charset.StandardCharsets.UTF_16BE;
    import static java.nio.charset.StandardCharsets.UTF_16LE;
    import static java.nio.charset.StandardCharsets.UTF_8;
    import static org.junit.Assert.assertEquals;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top