Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EncoderBufferPool (0.18 sec)

  1. api/go1.9.txt

    pkg html/template, const ErrPredefinedEscaper ErrorCode
    pkg image/png, type Encoder struct, BufferPool EncoderBufferPool
    pkg image/png, type EncoderBuffer struct
    pkg image/png, type EncoderBufferPool interface { Get, Put }
    pkg image/png, type EncoderBufferPool interface, Get() *EncoderBuffer
    pkg image/png, type EncoderBufferPool interface, Put(*EncoderBuffer)
    pkg math/big, method (*Int) IsInt64() bool
    pkg math/big, method (*Int) IsUint64() bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  2. src/image/png/writer.go

    	// EncoderBuffers when encoding an image.
    	BufferPool EncoderBufferPool
    }
    
    // EncoderBufferPool is an interface for getting and returning temporary
    // instances of the [EncoderBuffer] struct. This can be used to reuse buffers
    // when encoding multiple images.
    type EncoderBufferPool interface {
    	Get() *EncoderBuffer
    	Put(*EncoderBuffer)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DefaultCompression", Const, 4},
    		{"Encode", Func, 0},
    		{"Encoder", Type, 4},
    		{"Encoder.BufferPool", Field, 9},
    		{"Encoder.CompressionLevel", Field, 4},
    		{"EncoderBuffer", Type, 9},
    		{"EncoderBufferPool", Type, 9},
    		{"FormatError", Type, 0},
    		{"NoCompression", Const, 4},
    		{"UnsupportedError", Type, 0},
    	},
    	"index/suffixarray": {
    		{"(*Index).Bytes", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top