Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gids (0.05 sec)

  1. src/net/http/h2_bundle.go

    	// then re-insert after sorting so we can reuse tmp for future sort calls.
    	*tmp = (*tmp)[:0]
    	for n.kids != nil {
    		*tmp = append(*tmp, n.kids)
    		n.kids.setParent(nil)
    	}
    	sort.Sort(http2sortPriorityNodeSiblings(*tmp))
    	for i := len(*tmp) - 1; i >= 0; i-- {
    		(*tmp)[i].setParent(n) // setParent inserts at the head of n.kids
    	}
    	for k := n.kids; k != nil; k = k.next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

    message LinuxContainerUser {
      // UID is the primary uid initially attached to the first process in the container
      optional int64 uid = 1;
    
      // GID is the primary gid initially attached to the first process in the container
      optional int64 gid = 2;
    
      // SupplementalGroups are the supplemental groups initially attached to the first process in the container
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top