com.simiacryptus.util.Util.cacheStream()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(197)

本文整理了Java中com.simiacryptus.util.Util.cacheStream()方法的一些代码示例,展示了Util.cacheStream()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.cacheStream()方法的具体详情如下:
包路径:com.simiacryptus.util.Util
类名称:Util
方法名:cacheStream

Util.cacheStream介绍

[英]Cache input stream.
[中]缓存输入流。

代码示例

代码示例来源:origin: com.simiacryptus/java-util

  1. /**
  2. * Cache input stream.
  3. *
  4. * @param url the url
  5. * @return the input stream
  6. * @throws IOException the io exception
  7. * @throws NoSuchAlgorithmException the no such algorithm exception
  8. * @throws KeyManagementException the key management exception
  9. */
  10. public static InputStream cacheStream(@javax.annotation.Nonnull final URI url) throws IOException, NoSuchAlgorithmException, KeyManagementException {
  11. return com.simiacryptus.util.Util.cacheStream(url.toString(), new File(url.getPath()).getName());
  12. }

代码示例来源:origin: com.simiacryptus/mindseye-labs

  1. private static Stream<byte[]> binaryStream(@Nonnull final String name, final int skip, final int recordSize) throws IOException {
  2. @Nullable InputStream stream = null;
  3. try {
  4. stream = Util.cacheStream(TestUtil.S3_ROOT.resolve(name));
  5. } catch (@Nonnull NoSuchAlgorithmException | KeyManagementException e) {
  6. throw new RuntimeException(e);
  7. }
  8. final byte[] fileData = IOUtils.toByteArray(new BufferedInputStream(new GZIPInputStream(new BufferedInputStream(stream))));
  9. @Nonnull final DataInputStream in = new DataInputStream(new ByteArrayInputStream(fileData));
  10. in.skip(skip);
  11. return MNIST.toIterator(new BinaryChunkIterator(in, recordSize));
  12. }

代码示例来源:origin: com.simiacryptus/mindseye-test

  1. private static Stream<byte[]> binaryStream(@Nonnull final String name, final int skip, final int recordSize) throws IOException {
  2. @Nullable InputStream stream = null;
  3. try {
  4. stream = Util.cacheStream(TestUtil.S3_ROOT.resolve(name));
  5. } catch (@Nonnull NoSuchAlgorithmException | KeyManagementException e) {
  6. throw new RuntimeException(e);
  7. }
  8. final byte[] fileData = IOUtils.toByteArray(new BufferedInputStream(new GZIPInputStream(new BufferedInputStream(stream))));
  9. @Nonnull final DataInputStream in = new DataInputStream(new ByteArrayInputStream(fileData));
  10. in.skip(skip);
  11. return MNIST.toIterator(new BinaryChunkIterator(in, recordSize));
  12. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. private static Stream<byte[]> binaryStream(@Nonnull final String name, final int skip, final int recordSize) throws IOException {
  2. @Nullable InputStream stream = null;
  3. try {
  4. stream = Util.cacheStream(TestUtil.S3_ROOT.resolve(name));
  5. } catch (@Nonnull NoSuchAlgorithmException | KeyManagementException e) {
  6. throw new RuntimeException(e);
  7. }
  8. final byte[] fileData = IOUtils.toByteArray(new BufferedInputStream(new GZIPInputStream(new BufferedInputStream(stream))));
  9. @Nonnull final DataInputStream in = new DataInputStream(new ByteArrayInputStream(fileData));
  10. in.skip(skip);
  11. return MNIST.toIterator(new BinaryChunkIterator(in, recordSize));
  12. }

相关文章