Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 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. common-protos/k8s.io/api/core/v1/generated.proto

      // for that container.
      // Note that this field cannot be set when spec.os.name is windows.
      // +optional
      optional int64 runAsUser = 2;
    
      // The GID to run the entrypoint of the container process.
      // Uses runtime default if unset.
      // May also be set in SecurityContext.  If set in both SecurityContext and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	{PRTYW, 0xfc0007fe00000000, 0x7c00013400000000, 0xf80100000000, // Parity Word X-form (prtyw RA,RS)
    		[6]*argField{ap_Reg_11_15, ap_Reg_6_10}},
    	{SLBFEECC, 0xfc0007ff00000000, 0x7c0007a700000000, 0x1f000000000000, // SLB Find Entry ESID X-form (slbfee. RT,RB)
    		[6]*argField{ap_Reg_6_10, ap_Reg_16_20}},
    	{STBCIX, 0xfc0007fe00000000, 0x7c0007aa00000000, 0x100000000, // Store Byte Caching Inhibited Indexed X-form (stbcix RS,RA,RB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  8. api/go1.16.txt

    pkg syscall (darwin-arm64), type SysProcAttr struct, Foreground bool
    pkg syscall (darwin-arm64), type SysProcAttr struct, Noctty bool
    pkg syscall (darwin-arm64), type SysProcAttr struct, Pgid int
    pkg syscall (darwin-arm64), type SysProcAttr struct, Ptrace bool
    pkg syscall (darwin-arm64), type SysProcAttr struct, Setctty bool
    pkg syscall (darwin-arm64), type SysProcAttr struct, Setpgid bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top