Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for ByteSink (0.35 sec)

  1. android/guava-tests/test/com/google/common/io/SourceSinkFactories.java

        private final byte[] initialBytes;
    
        private FileByteSinkFactory(byte @Nullable [] initialBytes) {
          this.initialBytes = initialBytes;
        }
    
        @Override
        public ByteSink createSink() throws IOException {
          File file = createFile();
          if (initialBytes != null) {
            FileOutputStream out = new FileOutputStream(file);
            try {
              out.write(initialBytes);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Files.java

       * will append to the end of the file without truncating it.
       *
       * @since 14.0
       */
      public static ByteSink asByteSink(File file, FileWriteMode... modes) {
        return new FileByteSink(file, modes);
      }
    
      private static final class FileByteSink extends ByteSink {
    
        private final File file;
        private final ImmutableSet<FileWriteMode> modes;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jul 22 19:03:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/MoreFiles.java

       * WRITE} options.
       */
      public static ByteSink asByteSink(Path path, OpenOption... options) {
        return new PathByteSink(path, options);
      }
    
      @IgnoreJRERequirement // *should* be redundant with the one on MoreFiles itself
      private static final class PathByteSink extends ByteSink {
    
        private final Path path;
        private final OpenOption[] options;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/MoreFiles.java

       * StandardOpenOption#TRUNCATE_EXISTING TRUNCATE_EXISTING} and {@link StandardOpenOption#WRITE
       * WRITE} options.
       */
      public static ByteSink asByteSink(Path path, OpenOption... options) {
        return new PathByteSink(path, options);
      }
    
      private static final class PathByteSink extends ByteSink {
    
        private final Path path;
        private final OpenOption[] options;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/ByteSource.java

        }
      }
    
      /**
       * Copies the contents of this byte source to the given {@code ByteSink}.
       *
       * @return the number of bytes copied
       * @throws IOException if an I/O error occurs while reading from this source or writing to {@code
       *     sink}
       */
      @CanIgnoreReturnValue
      public long copyTo(ByteSink sink) throws IOException {
        checkNotNull(sink);
    
        Closer closer = Closer.create();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top