Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for MemoryOutput (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/io/FileBackedOutputStream.java

        @GuardedBy("this")
        @Nullable MemoryOutput memory;
    
        @GuardedBy("this")
        @Nullable File file;
    
        @GuardedBy("this")
        OutputStream out;
    
        State(int fileThreshold, boolean resetWhenGarbageCollected) {
          this.fileThreshold = fileThreshold;
          this.resetWhenGarbageCollected = resetWhenGarbageCollected;
          this.memory = new MemoryOutput();
          this.out = memory;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 17:30:49 GMT 2026
    - 12.4K bytes
    - Click Count (0)
Back to Top