Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DecodeString (0.28 sec)

  1. src/archive/zip/reader_test.go

    00001a0 69 70 50 4b 05 06 00 00 00 00 01 00 01 00 35 00
    00001b0 00 00 6d 01 00 00 00 00`
    	s = regexp.MustCompile(`[0-9a-f]{7}`).ReplaceAllString(s, "")
    	s = regexp.MustCompile(`\s+`).ReplaceAllString(s, "")
    	b, err := hex.DecodeString(s)
    	if err != nil {
    		panic(err)
    	}
    	return b
    }
    
    func returnRecursiveZip() (r io.ReaderAt, size int64) {
    	b := rZipBytes()
    	return bytes.NewReader(b), int64(len(b))
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg encoding/base32, func NewEncoding(string) *Encoding
    pkg encoding/base32, method (*Encoding) Decode([]uint8, []uint8) (int, error)
    pkg encoding/base32, method (*Encoding) DecodeString(string) ([]uint8, error)
    pkg encoding/base32, method (*Encoding) DecodedLen(int) int
    pkg encoding/base32, method (*Encoding) Encode([]uint8, []uint8)
    pkg encoding/base32, method (*Encoding) EncodeToString([]uint8) string
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top