Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for linear (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.11.md

        * Function is linear between points. Resource utilization is defined as one minus ratio of total amount of resource requested by pods on node and node's capacity (scaled to 100).
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    - GRPC probes now set a linger option of 1s to improve the TIME-WAIT state. ([#115321](https://github.com/kubernetes/kubernetes/pull/115321), [@rphillips](https://github.com/rphillips)) [SIG Network and Node]
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (1)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), func SetsockoptIPv6Mreq(int, int, int, *IPv6Mreq) error
    pkg syscall (netbsd-arm64-cgo), func SetsockoptLinger(int, int, int, *Linger) error
    pkg syscall (netbsd-arm64-cgo), func SetsockoptString(int, int, int, string) error
    pkg syscall (netbsd-arm64-cgo), func SetsockoptTimeval(int, int, int, *Timeval) error
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), func SetsockoptInet4Addr(int, int, int, [4]uint8) error
    pkg syscall (darwin-arm64), func SetsockoptInt(int, int, int, int) error
    pkg syscall (darwin-arm64), func SetsockoptLinger(int, int, int, *Linger) error
    pkg syscall (darwin-arm64), func SetsockoptString(int, int, int, string) error
    pkg syscall (darwin-arm64), func SetsockoptTimeval(int, int, int, *Timeval) error
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  5. doc/go_spec.html

    <p>
    Given the declarations
    </p>
    <pre>
    type Point3D struct { x, y, z float64 }
    type Line struct { p, q Point3D }
    </pre>
    
    <p>
    one may write
    </p>
    
    <pre>
    origin := Point3D{}                            // zero value for Point3D
    line := Line{origin, Point3D{y: -4, z: 12.3}}  // zero value for line.q.x
    </pre>
    
    <p>
    For array and slice literals the following rules apply:
    </p>
    <ul>
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top