Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for weights (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    }
    
    type Nhmsg struct {
    	Family   uint8
    	Scope    uint8
    	Protocol uint8
    	Resvd    uint8
    	Flags    uint32
    }
    
    type NexthopGrp struct {
    	Id     uint32
    	Weight uint8
    	Resvd1 uint8
    	Resvd2 uint16
    }
    
    const (
    	NHA_UNSPEC     = 0x0
    	NHA_ID         = 0x1
    	NHA_GROUP      = 0x2
    	NHA_GROUP_TYPE = 0x3
    	NHA_BLACKHOLE  = 0x4
    	NHA_OIF        = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.28.md

    - Kube-proxy service health returns http header `X-Load-Balancing-Endpoint-Weight` with number of local endpoints. The same information is still available in response body JSON `payload.LocalEndpoints`. ([#118999](https://github.com/kubernetes/kubernetes/pull/118999), [@cezarygerard](https://github.com/cezarygerard))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    99","samsung 21"]},stretch:{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["firefox 114"]},"fit-content":{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-siz...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  4. doc/go_spec.html

    repeating the previous list.  The number of identifiers must be equal
    to the number of expressions in the previous list.
    Together with the <a href="#Iota"><code>iota</code> constant generator</a>
    this mechanism permits light-weight declaration of sequential values:
    </p>
    
    <pre>
    const (
    	Sunday = iota
    	Monday
    	Tuesday
    	Wednesday
    	Thursday
    	Friday
    	Partyday
    	numberOfDays  // this constant is not exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top