leaky

package
v1.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 31, 2025 License: GPL-3.0 Imports: 0 Imported by: 2

README

util/leaky

Overview

Leak detection helpers for debugging resource usage. Implements buffering utilities to capture leaked output. Utilities focus on leakbuf within the leaky package.

Go Files

  • leakbuf.go – Implements a buffer wrapper for detecting unexpected writes during tests.

Documentation

Overview

Package lib leakbuf.go is stolen form ss

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type LeakyBuf

type LeakyBuf struct {
	// contains filtered or unexported fields
}

LeakyBuf leakybuf

func NewLeakyBuf

func NewLeakyBuf(n, bufSize int) *LeakyBuf

NewLeakyBuf creates a leaky buffer which can hold at most n buffer, each with bufSize bytes.

func (*LeakyBuf) Get

func (lb *LeakyBuf) Get() (b []byte)

Get returns a buffer from the leaky buffer or create a new buffer.

func (*LeakyBuf) Put

func (lb *LeakyBuf) Put(b []byte)

Put add the buffer into the free buffer pool for reuse. Panic if the buffer size is not the same with the leaky buffer's. This is intended to expose error usage of leaky buffer.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL