Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 92 for setoverflow (0.2 sec)

  1. src/runtime/map_test.go

    	{bs, 1, 1},
    	{bs + 1, 2, 2},
    	{belowOverflow, 2, 2},  // 1.5 bs = 2 buckets @ 75%
    	{atOverflow + 1, 4, 4}, // 13/8 bs + 1 == overflow to 4
    
    	{2 * belowOverflow, 4, 4}, // 3 bs = 4 buckets @75%
    	{2*atOverflow + 1, 8, 8},  // 13/4 bs + 1 = overflow to 8
    
    	{4 * belowOverflow, 8, 8},  // 6 bs = 8 buckets @ 75%
    	{4*atOverflow + 1, 16, 16}, // 13/2 bs + 1 = overflow to 16
    }
    
    func TestMapBuckets(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. src/runtime/map_faststr.go

    		goto again // Growing the table invalidates everything, so try again
    	}
    
    	if insertb == nil {
    		// The current bucket and all the overflow buckets connected to it are full, allocate a new one.
    		insertb = h.newoverflow(t, b)
    		inserti = 0 // not necessary, but avoids needlessly spilling inserti
    	}
    	insertb.tophash[inserti&(abi.MapBucketCount-1)] = top // mask inserti to avoid bounds checks
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	ENOTRECOVERABLE = syscall.Errno(0x83)
    	ENOTSOCK        = syscall.Errno(0x58)
    	ENOTSUP         = syscall.Errno(0x5f)
    	ENOTUNIQ        = syscall.Errno(0x4c)
    	EOPNOTSUPP      = syscall.Errno(0x5f)
    	EOVERFLOW       = syscall.Errno(0x4b)
    	EOWNERDEAD      = syscall.Errno(0x82)
    	EPFNOSUPPORT    = syscall.Errno(0x60)
    	EPROTO          = syscall.Errno(0x47)
    	EPROTONOSUPPORT = syscall.Errno(0x5d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	ENOTRECOVERABLE = syscall.Errno(0xa6)
    	ENOTSOCK        = syscall.Errno(0x5f)
    	ENOTSUP         = syscall.Errno(0x7a)
    	ENOTUNIQ        = syscall.Errno(0x50)
    	EOPNOTSUPP      = syscall.Errno(0x7a)
    	EOVERFLOW       = syscall.Errno(0x4f)
    	EOWNERDEAD      = syscall.Errno(0xa5)
    	EPFNOSUPPORT    = syscall.Errno(0x7b)
    	EPROTO          = syscall.Errno(0x47)
    	EPROTONOSUPPORT = syscall.Errno(0x78)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	ENOTRECOVERABLE = syscall.Errno(0x83)
    	ENOTSOCK        = syscall.Errno(0x58)
    	ENOTSUP         = syscall.Errno(0x5f)
    	ENOTUNIQ        = syscall.Errno(0x4c)
    	EOPNOTSUPP      = syscall.Errno(0x5f)
    	EOVERFLOW       = syscall.Errno(0x4b)
    	EOWNERDEAD      = syscall.Errno(0x82)
    	EPFNOSUPPORT    = syscall.Errno(0x60)
    	EPROTO          = syscall.Errno(0x47)
    	EPROTONOSUPPORT = syscall.Errno(0x5d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	ENOTRECOVERABLE = syscall.Errno(0x83)
    	ENOTSOCK        = syscall.Errno(0x58)
    	ENOTSUP         = syscall.Errno(0x5f)
    	ENOTUNIQ        = syscall.Errno(0x4c)
    	EOPNOTSUPP      = syscall.Errno(0x5f)
    	EOVERFLOW       = syscall.Errno(0x4b)
    	EOWNERDEAD      = syscall.Errno(0x82)
    	EPFNOSUPPORT    = syscall.Errno(0x60)
    	EPROTO          = syscall.Errno(0x47)
    	EPROTONOSUPPORT = syscall.Errno(0x5d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	ENOTRECOVERABLE = syscall.Errno(0x83)
    	ENOTSOCK        = syscall.Errno(0x58)
    	ENOTSUP         = syscall.Errno(0x5f)
    	ENOTUNIQ        = syscall.Errno(0x4c)
    	EOPNOTSUPP      = syscall.Errno(0x5f)
    	EOVERFLOW       = syscall.Errno(0x4b)
    	EOWNERDEAD      = syscall.Errno(0x82)
    	EPFNOSUPPORT    = syscall.Errno(0x60)
    	EPROTO          = syscall.Errno(0x47)
    	EPROTONOSUPPORT = syscall.Errno(0x5d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/const.go

    	if x.val.Kind() == constant.Int && constant.BitLen(x.val) > prec {
    		op := opName(x.expr)
    		if op != "" {
    			op += " "
    		}
    		check.errorf(atPos(opPos), InvalidConstVal, "constant %soverflow", op)
    		x.val = constant.MakeUnknown()
    	}
    }
    
    // representableConst reports whether x can be represented as
    // value of the given basic type and for the configuration
    // provided (only needed for int/uint sizes).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	ENOTRECOVERABLE = syscall.Errno(0x83)
    	ENOTSOCK        = syscall.Errno(0x58)
    	ENOTSUP         = syscall.Errno(0x5f)
    	ENOTUNIQ        = syscall.Errno(0x4c)
    	EOPNOTSUPP      = syscall.Errno(0x5f)
    	EOVERFLOW       = syscall.Errno(0x4b)
    	EOWNERDEAD      = syscall.Errno(0x82)
    	EPFNOSUPPORT    = syscall.Errno(0x60)
    	EPROTO          = syscall.Errno(0x47)
    	EPROTONOSUPPORT = syscall.Errno(0x5d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	ENOTRECOVERABLE = syscall.Errno(0xa6)
    	ENOTSOCK        = syscall.Errno(0x5f)
    	ENOTSUP         = syscall.Errno(0x7a)
    	ENOTUNIQ        = syscall.Errno(0x50)
    	EOPNOTSUPP      = syscall.Errno(0x7a)
    	EOVERFLOW       = syscall.Errno(0x4f)
    	EOWNERDEAD      = syscall.Errno(0xa5)
    	EPFNOSUPPORT    = syscall.Errno(0x7b)
    	EPROTO          = syscall.Errno(0x47)
    	EPROTONOSUPPORT = syscall.Errno(0x78)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top