Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BufferedOutputStream (0.26 sec)

  1. guava/src/com/google/common/io/ByteSink.java

       * @since 15.0 (in 14.0 with return type {@link BufferedOutputStream})
       */
      public OutputStream openBufferedStream() throws IOException {
        OutputStream out = openStream();
        return (out instanceof BufferedOutputStream)
            ? (BufferedOutputStream) out
            : new BufferedOutputStream(out);
      }
    
      /**
       * Writes all the given bytes to this sink.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 28 16:55:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.client.ftp;
    
    import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.net.MalformedURLException;
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:41:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top