Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for setoverflow (0.17 sec)

  1. src/runtime/map_fast32.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)] = tophash(hash) // 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
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	ssSuccess ssState = iota
    	// Indicates a rune starts a new segment and should not be added.
    	ssStarter
    	// Indicates a rune caused a segment overflow and a CGJ should be inserted.
    	ssOverflow
    )
    
    // streamSafe implements the policy of when a CGJ should be inserted.
    type streamSafe uint8
    
    // first inserts the first rune of a segment. It is a faster version of next if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/norm/composition.go

    	ssSuccess ssState = iota
    	// Indicates a rune starts a new segment and should not be added.
    	ssStarter
    	// Indicates a rune caused a segment overflow and a CGJ should be inserted.
    	ssOverflow
    )
    
    // streamSafe implements the policy of when a CGJ should be inserted.
    type streamSafe uint8
    
    // first inserts the first rune of a segment. It is a faster version of next if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top