Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setoverflow (0.14 sec)

  1. src/runtime/map.go

    	// If hint is large zeroing this memory could take a while.
    	if h.B != 0 {
    		var nextOverflow *bmap
    		h.buckets, nextOverflow = makeBucketArray(t, h.B, nil)
    		if nextOverflow != nil {
    			h.extra = new(mapextra)
    			h.extra.nextOverflow = nextOverflow
    		}
    	}
    
    	return h
    }
    
    // makeBucketArray initializes a backing array for map buckets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/syscall/zerrors_solaris_amd64.go

    	ENOTSOCK        = Errno(0x5f)
    	ENOTSUP         = Errno(0x30)
    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x50)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x7a)
    	EOVERFLOW       = Errno(0x4f)
    	EOWNERDEAD      = Errno(0x3a)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x7b)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    	EPROTONOSUPPORT = Errno(0x78)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top