Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for encodeFile (0.11 sec)

  1. pkg/log/config.go

    	StacktraceKey:  "stack",
    	LineEnding:     zapcore.DefaultLineEnding,
    	EncodeLevel:    zapcore.LowercaseLevelEncoder,
    	EncodeCaller:   zapcore.ShortCallerEncoder,
    	EncodeDuration: zapcore.StringDurationEncoder,
    	EncodeTime:     formatDate,
    }
    
    // functions that can be replaced in a test setting
    type patchTable struct {
    	write       func(ent zapcore.Entry, fields []zapcore.Field) error
    	sync        func() error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/net/http/fcgi/fcgi_test.go

    	{1000, []byte{0x80, 0x00, 0x03, 0xE8}},
    	{33554431, []byte{0x81, 0xFF, 0xFF, 0xFF}},
    }
    
    func TestSize(t *testing.T) {
    	b := make([]byte, 4)
    	for i, test := range sizeTests {
    		n := encodeSize(b, test.size)
    		if !bytes.Equal(b[:n], test.bytes) {
    			t.Errorf("%d expected %x, encoded %x", i, test.bytes, b)
    		}
    		size, n := readSize(test.bytes)
    		if size != test.size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top