Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for defaultCharset (0.1 sec)

  1. src/main/java/org/codelibs/core/io/PropertiesUtil.java

         * @param file
         *            File. Must not be {@literal null}.
         */
        public static void load(final Properties props, final File file) {
            load(props, file, Charset.defaultCharset().name());
        }
    
        /**
         * Loads the specified {@link URL} into the {@link Properties} (wraps exception handling).
         *
         * @param props
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java

         */
        public static final String FEATURE_EXTERNAL_PARAMETER_ENTITIES = "http://xml.org/sax/features/external-parameter-entities";
    
        static {
            DEFAULT_CHARSET = Charset.defaultCharset();
        }
    
        /**
         * Private constructor to prevent instantiation of this class.
         */
        private Constants() {
        }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/FileUtil.java

         * @return The text read from the file.
         */
        public static String readText(final String path) {
            assertArgumentNotEmpty("path", path);
            return readText(path, Charset.defaultCharset().name());
        }
    
        /**
         * Reads text from a file using the default encoding.
         *
         * @param file
         *            The file. Must not be {@literal null}.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/Name.java

        private static final String DEFAULT_SCOPE = Config.getProperty("jcifs.smb1.netbios.scope");
    
        static final String OEM_ENCODING = Config.getProperty("jcifs.smb1.encoding", Charset.defaultCharset().displayName());
    
        /** The NetBIOS name (up to 15 characters) */
        public String name;
        /** The NetBIOS scope identifier */
        public String scope;
        /** The NetBIOS name type/suffix (hexadecimal code) */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

        /** Command execution timeout in milliseconds. */
        protected long executionTimeout = 30L * 1000L; // 30sec
    
        /** Character encoding for command output. */
        protected String commandOutputEncoding = Charset.defaultCharset().displayName();
    
        /** Command array for user update operations. */
        protected String[] updateCommand;
    
        /** Command array for user deletion operations. */
        protected String[] deleteCommand;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                if (logger.isDebugEnabled()) {
                    logger.debug("Thumbnail Command: {}", cmdList);
                }
    
                p = pb.start();
                ist = new InputStreamThread(p.getInputStream(), Charset.defaultCharset(), 0, s -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug(s);
                    }
                });
                task = new ProcessDestroyer(p, ist, commandDestroyTimeout);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

        /** The working directory for the command. */
        protected File workingDirectory = null;
    
        /** The encoding for the command's output. */
        protected String commandOutputEncoding = Charset.defaultCharset().displayName();
    
        /** The maximum number of lines to buffer from command output. */
        protected int maxOutputLine = 1000;
    
        /** Whether to redirect standard output to a file. */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 16K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

          }
        val eventListener: EventListener = factory.create(FailingCall())
      }
    
      @Test
      fun mediaType() {
        val mediaType: MediaType = "".toMediaType()
        val defaultCharset: Charset? = mediaType.charset()
        val charset: Charset? = mediaType.charset(Charsets.UTF_8)
        val type: String = mediaType.type
        val subtype: String = mediaType.subtype
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 46.5K bytes
    - Viewed (0)
Back to top