Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ErrShortDst (0.15 sec)

  1. src/cmd/vendor/golang.org/x/text/transform/transform.go

    package transform // import "golang.org/x/text/transform"
    
    import (
    	"bytes"
    	"errors"
    	"io"
    	"unicode/utf8"
    )
    
    var (
    	// ErrShortDst means that the destination buffer was too short to
    	// receive all of the transformed bytes.
    	ErrShortDst = errors.New("transform: short destination buffer")
    
    	// ErrShortSrc means that the source buffer has insufficient data to
    	// complete the transformation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/transform/transform.go

    package transform // import "golang.org/x/text/transform"
    
    import (
    	"bytes"
    	"errors"
    	"io"
    	"unicode/utf8"
    )
    
    var (
    	// ErrShortDst means that the destination buffer was too short to
    	// receive all of the transformed bytes.
    	ErrShortDst = errors.New("transform: short destination buffer")
    
    	// ErrShortSrc means that the source buffer has insufficient data to
    	// complete the transformation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
Back to top