Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for intSize (0.11 sec)

  1. src/encoding/base32/base32_test.go

    		{rawStdEncoding, 4, 7},
    		{rawStdEncoding, 5, 8},
    		{rawStdEncoding, 6, 10},
    		{rawStdEncoding, 7, 12},
    		{rawStdEncoding, 10, 16},
    		{rawStdEncoding, 11, 18},
    	}
    	// check overflow
    	switch strconv.IntSize {
    	case 32:
    		tests = append(tests, test{rawStdEncoding, (math.MaxInt-4)/8 + 1, 429496730})
    		tests = append(tests, test{rawStdEncoding, math.MaxInt/8*5 + 4, math.MaxInt})
    	case 64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool-decom_gen.go

    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *PoolStatus) Msgsize() (s int) {
    	s = 1 + 3 + msgp.IntSize + 3 + msgp.StringPrefixSize + len(z.CmdLine) + 3 + msgp.TimeSize + 4
    	if z.Decommission == nil {
    		s += msgp.NilSize
    	} else {
    		s += z.Decommission.Msgsize()
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  3. cmd/bucket-replication-metrics_gen.go

    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z ActiveWorkerStat) Msgsize() (s int) {
    	s = 1 + 5 + msgp.IntSize + 4 + msgp.Float32Size + 4 + msgp.IntSize
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *InQueueMetric) DecodeMsg(dc *msgp.Reader) (err error) {
    	var field []byte
    	_ = field
    	var zb0001 uint32
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    	case *ast.Ident:
    		goTypesFixup := func(r *Type) *Type {
    			if r.Size == 0 { // int or uint
    				rr := new(Type)
    				*rr = *r
    				rr.Size = p.IntSize
    				rr.Align = p.IntSize
    				r = rr
    			}
    			if r.Align > p.PtrSize {
    				r.Align = p.PtrSize
    			}
    			return r
    		}
    		// Look up the type in the top level declarations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/flag/flag_test.go

    	if got != defaultOutput {
    		t.Errorf("got:\n%q\nwant:\n%q", got, defaultOutput)
    	}
    }
    
    // Issue 19230: validate range of Int and Uint flag values.
    func TestIntFlagOverflow(t *testing.T) {
    	if strconv.IntSize != 32 {
    		return
    	}
    	ResetForTesting(nil)
    	Int("i", 0, "")
    	Uint("u", 0, "")
    	if err := Set("i", "2147483648"); err == nil {
    		t.Error("unexpected success setting Int")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. src/encoding/base64/base64.go

    	// Lift the nil check outside of the loop. enc.decodeMap is directly
    	// used later in this function, to let the compiler know that the
    	// receiver can't be nil.
    	_ = enc.decodeMap
    
    	si := 0
    	for strconv.IntSize >= 64 && len(src)-si >= 8 && len(dst)-n >= 8 {
    		src2 := src[si : si+8]
    		if dn, ok := assemble64(
    			enc.decodeMap[src2[0]],
    			enc.decodeMap[src2[1]],
    			enc.decodeMap[src2[2]],
    			enc.decodeMap[src2[3]],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. cmd/data-usage-cache_gen.go

    	s = 1 + 3 + msgp.MapHeaderSize
    	if z.Tiers != nil {
    		for za0001, za0002 := range z.Tiers {
    			_ = za0002
    			s += msgp.StringPrefixSize + len(za0001) + 1 + 3 + msgp.Uint64Size + 3 + msgp.IntSize + 3 + msgp.IntSize
    		}
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z *currentScannerCycle) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 4
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  8. src/flag/flag.go

    // -- int Value
    type intValue int
    
    func newIntValue(val int, p *int) *intValue {
    	*p = val
    	return (*intValue)(p)
    }
    
    func (i *intValue) Set(s string) error {
    	v, err := strconv.ParseInt(s, 0, strconv.IntSize)
    	if err != nil {
    		err = numError(err)
    	}
    	*i = intValue(v)
    	return err
    }
    
    func (i *intValue) Get() any { return int(*i) }
    
    func (i *intValue) String() string { return strconv.Itoa(int(*i)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  9. cmd/storage-datatypes_gen.go

    	for za0003 := range z.Parts {
    		s += z.Parts[za0003].Msgsize()
    	}
    	s += z.Erasure.Msgsize() + msgp.BoolSize + z.ReplicationState.Msgsize() + msgp.BytesPrefixSize + len(z.Data) + msgp.IntSize + msgp.TimeSize + msgp.BoolSize + msgp.IntSize + msgp.BytesPrefixSize + len(z.Checksum) + msgp.BoolSize
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *FileInfoVersions) DecodeMsg(dc *msgp.Reader) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  10. cmd/site-replication-metrics_gen.go

    	if z.ErrCounts != nil {
    		for za0001, za0002 := range z.ErrCounts {
    			_ = za0002
    			s += msgp.StringPrefixSize + len(za0001) + msgp.IntSize
    		}
    	}
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *SRMetric) DecodeMsg(dc *msgp.Reader) (err error) {
    	var field []byte
    	_ = field
    	var zb0001 uint32
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top