Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Len (0.16 sec)

  1. doc/go_spec.html

    a2 := [2]byte(s)         // a2[0] == s[0]
    a4 := [4]byte(s)         // panics: len([4]byte) > len(s)
    
    s0 := (*[0]byte)(s)      // s0 != nil
    s1 := (*[1]byte)(s[1:])  // &s1[0] == &s[1]
    s2 := (*[2]byte)(s)      // &s2[0] == &s[0]
    s4 := (*[4]byte)(s)      // panics: len([4]byte) > len(s)
    
    var t []string
    t0 := [0]string(t)       // ok for nil slice t
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHER_HDR_LEN = 14
    pkg syscall (netbsd-arm64-cgo), const ETHER_HDR_LEN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN = 1518
    pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN_JUMBO = 9018
    pkg syscall (netbsd-arm64-cgo), const ETHER_MAX_LEN_JUMBO ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERMIN = 46
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64-cgo), type RawSockaddrInet4 struct, Zero [8]int8
    pkg syscall (darwin-arm64-cgo), type RawSockaddrInet6 struct, Family uint8
    pkg syscall (darwin-arm64-cgo), type RawSockaddrInet6 struct, Len uint8
    pkg syscall (darwin-arm64-cgo), type RawSockaddrUnix struct, Family uint8
    pkg syscall (darwin-arm64-cgo), type RawSockaddrUnix struct, Len uint8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Fixed a regression since `v1.27.0` in the scheduler framework when running score plugins. 
      The `skippedScorePlugins` number might be greater than `enabledScorePlugins`, 
      so when initializing a slice the `cap(len(skippedScorePlugins) - len(enabledScorePlugins))` is negative, 
      which is not allowed. ([#121632](https://github.com/kubernetes/kubernetes/pull/121632), [@kerthcet](https://github.com/kerthcet))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 21:41:06 GMT 2024
    - 299.9K bytes
    - Viewed (1)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Fixed a regression since 1.27.0 in scheduler framework when running score plugins. 
      The `skippedScorePlugins` number might be greater than `enabledScorePlugins`, 
      so when initializing a slice the cap(len(skippedScorePlugins) - len(enabledScorePlugins)) is negative, 
      which is not allowed. ([#121667](https://github.com/kubernetes/kubernetes/pull/121667), [@kerthcet](https://github.com/kerthcet)) [SIG Scheduling]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 20:44:48 GMT 2024
    - 385.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Fixed a regression since 1.27.0 in scheduler framework when running score plugins. 
      The `skippedScorePlugins` number might be greater than `enabledScorePlugins`, 
      so when initializing a slice the cap(len(skippedScorePlugins) - len(enabledScorePlugins)) is negative, 
      which is not allowed. ([#121666](https://github.com/kubernetes/kubernetes/pull/121666), [@kerthcet](https://github.com/kerthcet)) [SIG Scheduling]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
Back to top