Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/apis/core/types.go

    type LinuxContainerUser struct {
    	// UID is the primary uid initially attached to the first process in the container
    	UID int64
    	// GID is the primary gid initially attached to the first process in the container
    	GID int64
    	// SupplementalGroups are the supplemental groups initially attached to the first process in the container
    	SupplementalGroups []int64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                   "LinuxContainerUser represents user identity information in Linux containers",
    	"uid":                "UID is the primary uid initially attached to the first process in the container",
    	"gid":                "GID is the primary gid initially attached to the first process in the container",
    	"supplementalGroups": "SupplementalGroups are the supplemental groups initially attached to the first process in the container",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Sec  int64
    	Nsec uint32
    	_    int32
    }
    
    type Statx_t struct {
    	Mask             uint32
    	Blksize          uint32
    	Attributes       uint64
    	Nlink            uint32
    	Uid              uint32
    	Gid              uint32
    	Mode             uint16
    	_                [1]uint16
    	Ino              uint64
    	Size             uint64
    	Blocks           uint64
    	Attributes_mask  uint64
    	Atime            StatxTimestamp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_LinuxContainerUser_To_core_LinuxContainerUser(in *v1.LinuxContainerUser, out *core.LinuxContainerUser, s conversion.Scope) error {
    	out.UID = in.UID
    	out.GID = in.GID
    	out.SupplementalGroups = *(*[]int64)(unsafe.Pointer(&in.SupplementalGroups))
    	return nil
    }
    
    // Convert_v1_LinuxContainerUser_To_core_LinuxContainerUser is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top