Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InputEncoding (1.92 sec)

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

            assertArgumentNotEmpty("inputEncoding", inputEncoding);
            assertArgumentNotNull("out", out);
            assertArgumentNotEmpty("outputEncoding", outputEncoding);
    
            final Reader is = ReaderUtil.create(in, inputEncoding);
            try {
                final Writer os = WriterUtil.create(out, outputEncoding);
                try {
                    return copyInternal(wrap(is), wrap(os));
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java

            Charset inputEncoding = Charset.forName(getInputEncoding().get());
    
            File destination = getDestinationFile().get().getAsFile();
            Charset outputEncoding = Charset.forName(getOutputEncoding().get());
            try (InputStreamReader inputStream = new InputStreamReader(new FileInputStream(markdownFile), inputEncoding);
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue May 27 09:07:14 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    protected char[][] entityNameBuf; protected String[] entityReplacement; protected char[][] entityReplacementBuf; protected int[] entityNameHash; protected static final int READ_CHUNK_SIZE = 8192; protected java.io.Reader reader; protected String inputEncoding; protected int bufLoadFactor; protected char[] buf; protected int bufSoftLimit; protected boolean preventBufferCompact; protected int bufAbsoluteStart; protected int bufStart; protected int bufEnd; protected int pos; protected int posStart; protected...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top